* * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library in the file LICENSE.LGPL; if not, write to the * Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA * 02111-1307 USA * * Alternatively, you may distribute this software under the terms of the * PHP License, version 3.0 or later. A copy of this license should have * been distributed with this file in the file LICENSE.PHP . If this is not * the case, you can obtain a copy at http://www.php.net/license/3_0.txt. * * The latest version of DOMPDF might be available at: * http://www.digitaljunkies.ca/dompdf * * @link http://www.digitaljunkies.ca/dompdf * @copyright 2004 Benj Carson * @author Benj Carson * @contributor Helmut Tischer * @package dompdf * @version 0.5.1 * * Changes * @contributor Helmut Tischer * @version 0.5.1.htischer.20090507 * - added comment */ /* $Id: list_bullet_image_frame_decorator.cls.php 186 2009-10-19 22:42:06Z eclecticgeek@gmail.com $ */ /** * Decorates frames for list bullets with custom images * * @access private * @package dompdf */ class List_Bullet_Image_Frame_Decorator extends Frame_Decorator { /** * The underlying image frame * * @var Image_Frame_Decorator */ protected $_img; /** * The image's width in pixels * * @var int */ protected $_width; /** * The image's height in pixels * * @var int */ protected $_height; /** * Class constructor * * @param Frame $frame the bullet frame to decorate * @param DOMPDF $dompdf the document's dompdf object */ function __construct(Frame $frame, DOMPDF $dompdf) { $style = $frame->get_style(); $url = $style->list_style_image; $frame->get_node()->setAttribute("src", $url); $this->_img = new Image_Frame_Decorator($frame, $dompdf); parent::__construct($this->_img, $dompdf); list($width, $height) = getimagesize($this->_img->get_image_url()); // Resample the bullet image to be consistent with 'auto' sized images // See also Image_Frame_Reflower::get_min_max_width // Tested php ver: value measured in px, suffix "px" not in value: rtrim unnecessary. $this->_width = (((float)rtrim($width, "px")) * 72) / DOMPDF_DPI; $this->_height = (((float)rtrim($height, "px")) * 72) / DOMPDF_DPI; //If an image is taller as the containing block/box, the box should be extended. //Neighbour elements are overwriting the overlapping image areas. //Todo: Where can the box size be extended? //Code below has no effect. //See block_frame_reflower _calculate_restricted_height //See generated_frame_reflower, Dompdf:render() "list-item", "-dompdf-list-bullet"S. //Leave for now //if ($style->min_height < $this->_height ) { // $style->min_height = $this->_height; //} //$style->height = "auto"; } /** * Return the bullet's width * * @return int */ function get_width() { //ignore image width, use same width as on predefined bullet List_Bullet_Frame_Decorator //for proper alignment of bullet image and text. Allow image to not fitting on left border. //This controls the distance between bullet image and text //return $this->_width; return $this->_frame->get_style()->get_font_size()*List_Bullet_Frame_Decorator::BULLET_SIZE + 2 * List_Bullet_Frame_Decorator::BULLET_PADDING; } /** * Return the bullet's height * * @return int */ function get_height() { //based on image height return $this->_height; } /** * Override get_margin_width * * @return int */ function get_margin_width() { //ignore image width, use same width as on predefined bullet List_Bullet_Frame_Decorator //for proper alignment of bullet image and text. Allow image to not fitting on left border. //This controls the extra indentation of text to make room for the bullet image. //Here use actual image size, not predefined bullet size //return $this->_frame->get_style()->get_font_size()*List_Bullet_Frame_Decorator::BULLET_SIZE + // 2 * List_Bullet_Frame_Decorator::BULLET_PADDING; // Small hack to prevent indenting of list text // Image Might not exist, then position like on list_bullet_frame_decorator fallback to none. if ( $this->_frame->get_style()->list_style_position == "outside" || $this->_width == 0) return 0; //This aligns the "inside" image position with the text. //The text starts to the right of the image. //Between the image and the text there is an added margin of image width. //Where this comes from is unknown. //The corresponding List_Bullet_Frame_Decorator sets a smaller margin. bullet size? return $this->_width + 2 * List_Bullet_Frame_Decorator::BULLET_PADDING; } /** * Override get_margin_height() * * @return int */ function get_margin_height() { //Hits only on "inset" lists items, to increase height of box //based on image height return $this->_height + 2 * List_Bullet_Frame_Decorator::BULLET_PADDING; } /** * Return image url * * @return string */ function get_image_url() { return $this->_img->get_image_url(); } /** * Return the image extension * * @return string */ function get_image_ext() { return $this->_img->get_image_ext(); } } ?>