Lines Matching refs:x

18   function add_link($x, $y, $w, $h, $target) {  argument
19 $this->_coords2pdf_annotation($x, $y);
20 $this->pdf->add_link_external($x, $y, $w, $h, $target);
25 $x = 0;
27 $this->_coords2pdf($x, $y);
35 $x = $left;
37 $this->_coords2pdf($x, $y);
39 $this->pdf->add_link_internal($x,
48 function _coords2pdf(&$x, &$y) { argument
54 function _coords2pdf_annotation(&$x, &$y) { argument
56 $this->_coords2pdf($x, $y);
64 function circle($x, $y, $r) { argument
65 $this->pdf->circle($x, $y, $r);
80 function dash($x, $y) { argument
81 $this->pdf->SetDash(ceil($x), ceil($y));
88 function field_multiline_text($x, $y, $w, $h, $value, $field_name) { argument
89 $this->_coords2pdf_annotation($x, $y);
90 $this->pdf->add_field_multiline_text($x, $y, $w, $h, $value, $field_name);
93 function field_text($x, $y, $w, $h, $value, $field_name) { argument
94 $this->_coords2pdf_annotation($x, $y);
95 $this->pdf->add_field_text($x, $y, $w, $h, $value, $field_name);
98 function field_password($x, $y, $w, $h, $value, $field_name) { argument
99 $this->_coords2pdf_annotation($x, $y);
100 $this->pdf->add_field_password($x, $y, $w, $h, $value, $field_name);
103 function field_pushbutton($x, $y, $w, $h) { argument
104 $this->_coords2pdf_annotation($x, $y);
105 $this->pdf->add_field_pushbutton($x, $y, $w, $h);
108 function field_pushbuttonimage($x, $y, $w, $h, $field_name, $value, $actionURL) { argument
109 $this->_coords2pdf_annotation($x, $y);
110 $this->pdf->add_field_pushbuttonimage($x, $y, $w, $h, $field_name, $value, $actionURL);
113 function field_pushbuttonreset($x, $y, $w, $h) { argument
114 $this->_coords2pdf_annotation($x, $y);
115 $this->pdf->add_field_pushbuttonreset($x, $y, $w, $h);
118 function field_pushbuttonsubmit($x, $y, $w, $h, $field_name, $value, $actionURL) { argument
119 $this->_coords2pdf_annotation($x, $y);
120 $this->pdf->add_field_pushbuttonsubmit($x, $y, $w, $h, $field_name, $value, $actionURL);
123 function field_checkbox($x, $y, $w, $h, $name, $value, $checked) { argument
124 $this->_coords2pdf_annotation($x, $y);
125 $this->pdf->add_field_checkbox($x, $y, $w, $h, $name, $value, $checked);
128 function field_radio($x, $y, $w, $h, $groupname, $value, $checked) { argument
135 $this->_coords2pdf_annotation($x, $y);
136 $this->pdf->add_field_radio($x, $y, $w, $h, $groupname, $value, $checked);
139 function field_select($x, $y, $w, $h, $name, $value, $options) { argument
140 $this->_coords2pdf_annotation($x, $y);
141 $this->pdf->add_field_select($x, $y, $w, $h, $name, $value, $options);
161 function image($image, $x, $y, $scale) { argument
164 $this->_coords2pdf($x, $y);
166 $x,
174 function image_rx($image, $x, $y, $width, $right, $ox, $oy, $scale) { argument
178 $cx = $x;
188 $cx = $x;
189 while ($cx+$width >= $x - $ox) {
200 function image_rx_ry($image, $x, $y, $width, $height, $right, $bottom, $ox, $oy, $scale) { argument
206 $cx = $x;
221 $cx = $x;
222 while ($cx+$width > $x - $ox) {
235 $cx = $x;
249 $cx = $x;
250 while ($cx+$width > $x - $ox) {
264 function image_ry($image, $x, $y, $height, $bottom, $ox, $oy, $scale) { argument
270 $tx = $x;
280 $tx = $x;
290 function image_scaled($image, $x, $y, $scale_x, $scale_y) { argument
293 $this->_coords2pdf($x, $y);
294 …$this->pdf->Image($tmpname, $x, $y - $image->sy() * $scale_y, $image->sx() * $scale_x, $image->sy(…
298 function lineto($x, $y) { argument
299 $this->_coords2pdf($x, $y);
300 $this->pdf->lineto($x, $y);
303 function moveto($x, $y) { argument
304 $this->_coords2pdf($x, $y);
305 $this->pdf->moveto($x, $y);
359 function setlinewidth($x) { argument
360 $this->pdf->SetLineWidth($x);
370 function show_xy($text, $x, $y) { argument
371 $this->_coords2pdf($x, $y);
373 $this->pdf->Text($x, $y, $text);
389 $x = $this->left + $this->width / 2;
391 $this->_coords2pdf($x, $y);
395 $this->pdf->Translate($x, $y);