本文整理汇总了PHP中Frame::get_width方法的典型用法代码示例。如果您正苦于以下问题:PHP Frame::get_width方法的具体用法?PHP Frame::get_width怎么用?PHP Frame::get_width使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Frame
的用法示例。
在下文中一共展示了Frame::get_width方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: render
function render(Frame $frame)
{
$style = $frame->get_style();
$line_height = $style->length_in_pt($style->line_height, $frame->get_containing_block("w"));
// Handle list-style-image
if ($style->list_style_image != "none") {
list($x, $y) = $frame->get_position();
$w = $frame->get_width();
$h = $frame->get_height();
$x += $w / 2;
$y += $line_height / 2 - $h / 2;
$this->_canvas->image($frame->get_image_url(), $frame->get_image_ext(), $x, $y, $w, $h);
} else {
$bullet_style = $style->list_style_type;
$bullet_size = List_Bullet_Frame_Decorator::BULLET_SIZE;
$fill = false;
switch ($bullet_style) {
default:
case "disc":
$fill = true;
case "circle":
if (!$fill) {
$fill = false;
}
list($x, $y) = $frame->get_position();
$x += $bullet_size / 2 + List_Bullet_Frame_Decorator::BULLET_PADDING;
$y += $line_height - $bullet_size;
$r = $bullet_size / 2;
$this->_canvas->circle($x, $y, $r, $style->color, 0.2, null, $fill);
break;
case "square":
list($x, $y) = $frame->get_position();
$w = $bullet_size;
$x += List_Bullet_Frame_Decorator::BULLET_PADDING;
$y += $line_height - $w - List_Bullet_Frame_Decorator::BULLET_PADDING;
$this->_canvas->filled_rectangle($x, $y, $w, $w, $style->color);
break;
}
}
}