Blame view

sources/3rdparty/dompdf/include/image_renderer.cls.php 2.37 KB
31b7f2792   Kload   Upgrade to ownclo...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
  <?php
  /**
   * @package dompdf
   * @link    http://www.dompdf.com/
   * @author  Benj Carson <benjcarson@digitaljunkies.ca>
   * @author  Fabien Ménager <fabien.menager@gmail.com>
   * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License
   * @version $Id: image_renderer.cls.php 448 2011-11-13 13:00:03Z fabien.menager $
   */
  
  /**
   * Image renderer
   *
   * @access private
   * @package dompdf
   */
  class Image_Renderer extends Block_Renderer {
  
    function render(Frame $frame) {
      // Render background & borders
      $style = $frame->get_style();
      $cb = $frame->get_containing_block();
      list($x, $y, $w, $h) = $frame->get_border_box();
    
      $this->_set_opacity( $frame->get_opacity( $style->opacity ) );
  
      if ( ($bg = $style->background_color) !== "transparent" )
        $this->_canvas->filled_rectangle($x, $y, $w, $h, $bg);
  
      if ( ($url = $style->background_image) && $url !== "none" )
        $this->_background_image($url, $x, $y, $w, $h, $style);
           
      $this->_render_border($frame);
      $this->_render_outline($frame);
      
      list($x, $y) = $frame->get_padding_box();
      $x += $style->length_in_pt($style->padding_left, $cb["w"]);
      $y += $style->length_in_pt($style->padding_top, $cb["h"]);
      
      $w = $style->length_in_pt($style->width, $cb["w"]);
      $h = $style->length_in_pt($style->height, $cb["h"]);
      
      $src = $frame->get_image_url();
  
      if ( Image_Cache::is_broken($src) &&
        $alt = $frame->get_node()->getAttribute("alt") ) {
        $font = $style->font_family;
        $size = $style->font_size;
        $spacing = $style->word_spacing;
        $this->_canvas->text($x, $y, $alt,
                             $font, $size,
                             $style->color, $spacing);
      }
      else {
        $this->_canvas->image( $src, $x, $y, $w, $h, $style->image_resolution);
      }
      
      if ( $msg = $frame->get_image_msg() ) {
        $parts = preg_split("/\s*
  \s*/", $msg);
        $height = 10;
        $_y = $alt ? $y+$h-count($parts)*$height : $y;
        
        foreach($parts as $i => $_part) {
          $this->_canvas->text($x, $_y + $i*$height, $_part, "times", $height*0.8, array(0.5, 0.5, 0.5));
        }
      }
      
      if (DEBUG_LAYOUT && DEBUG_LAYOUT_BLOCKS) {
        $this->_debug_layout($frame->get_border_box(), "blue");
        if (DEBUG_LAYOUT_PADDINGBOX) {
          $this->_debug_layout($frame->get_padding_box(), "blue", array(0.5, 0.5));
        }
      }
    }
  }