ecc3dbc0e47b3632e18b8973fc23d216fc016127
[pear] / XML / SvgToPdf / Image.php
1 <?php
2
3 /* output a rectangle
4
5 */
6
7 class XML_SvgToPDF_Image  extends XML_SvgToPDF_Base {
8     function writePDF($pdf,$data) {
9     
10     
11         $dir = dirname($GLOBALS['_XML_SVGTOPDF']['options']['file']);
12         $pdf->Image($dir .'/'.basename($this->href), $this->x/ 3.543307, $this->y/ 3.543307, $this->width/ 3.543307,$this->height/ 3.543307);
13      
14     
15     }
16
17  
18
19
20 }