Lines Matching refs:write

23 …$this->write(sprintf("[ /Rect [ %.2f %.2f %.2f %.2f ] /Action << /Subtype /URI /URI (%s) >> /Borde…
28 …$this->write(sprintf("[ /Rect [ %.2f %.2f %.2f %.2f ] /Page %d /View [ /XYZ null %.2f null ] /Bord…
34 $this->write(sprintf("%.2f %.2f %.2f 0 360 arc\n", $x, $y, $r));
38 $this->write("clip newpath\n");
47 $this->write("closepath\n");
51 $this->write(sprintf("[%.2f %.2f] 0 setdash\n", $x, $y));
61 $this->write("fill\n");
123 $this->write(sprintf("%.2f %.2f %s %s {%s} %d %d image-create image-show\n",
139 $this->write(sprintf("%.2f %.2f %s %s {%s} %d %d image-create image-show\n",
154 …$this->write(sprintf("%.2f %.2f %.2f %.2f %.2f %.2f %.2f %s %s {%s} %d %d image-create image-show-…
168 …$this->write(sprintf("%.2f %.2f %.2f %.2f %.2f %.2f %.2f %s %s {%s} %d %d image-create image-show-…
182 …$this->write(sprintf("%.2f %.2f %.2f %.2f %.2f %.2f %.2f %.2f %.2f %s %s {%s} %d %d image-create …
193 $this->write($data);
198 $this->write($data);
203 $this->write("showpage\n");
213 $this->write(sprintf("%%%%Page: %d %d\n", $this->current_page + 1, $this->current_page + 1));
214 $this->write("%%BeginPageSetup\n");
215 $this->write(sprintf("initpage\n"));
216 $this->write(sprintf("0 %.2f translate\n", -$this->offset));
217 $this->write("0 0 0 setrgbcolor\n");
218 $this->write("%%EndPageSetup\n");
248 $this->write("grestore\n");
252 $this->write("gsave\n");
263 $this->write(sprintf("%s %.2f scalefont setfont\n", $this->currentfont->name(), $size));
270 $this->write($data);
275 $this->write($data);
281 $this->write("(".$this->_string($text).") show\n");
303 $this->write("stroke\n");
306 function write($string) { function in OutputDriverFastPS