Example #1
0
 function filled_rectangle($x1, $y1, $w, $h, $color)
 {
     $this->_set_fill_color($color);
     $y1 = $this->y($y1) - $h;
     $this->_pdf->rect($x1, $y1, $w, $h);
     $this->_pdf->fill();
 }
 function clipping_rectangle($x1, $y1, $w, $h)
 {
     $this->_pdf->save();
     $y1 = $this->y($y1) - $h;
     $this->_pdf->rect(floatval($x1), floatval($y1), floatval($w), floatval($h));
     $this->_pdf->clip();
 }