Home
last modified time | relevance | path

Searched refs:writer (Results 1 – 25 of 231) sorted by last modified time

12345678910

/plugin/openlayersmap/ol7/
H A Dol.js.map
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DTWKB.php61 /** @var BinaryWriter $writer */
62 private $writer; variable in geoPHP\\Adapter\\TWKB
336 $this->writer = new BinaryWriter();
371 $twkbHead = $this->writer->writeUInt8($type);
385 $twkbHead .= $this->writer->writeUInt8($metadataHeader);
417 $twkbBox = $this->writer->writeSVarInt($bBox['minx'] * $this->writeOptions['xyFactor']);
418 $twkbBox .= $this->writer->writeSVarInt(($bBox['maxx'] - $bBox['minx']) * $this->writeOptions['xyFactor']);
420 $twkbBox .= $this->writer->writeSVarInt($bBox['miny'] * $this->writeOptions['xyFactor']);
421 $twkbBox .= $this->writer->writeSVarInt(($bBox['maxy'] - $bBox['miny']) * $this->writeOptions['xyFactor']);
425 $twkbBox .= $this->writer
[all...]
H A DWKB.php48 /** @var BinaryWriter $writer */
49 protected $writer; variable in geoPHP\\Adapter\\WKB
276 $this->writer = new BinaryWriter($bigEndian ? BinaryWriter::BIG_ENDIAN : BinaryWriter::LITTLE_ENDIAN);
292 $wkb = $this->writer->writeSInt8($this->writer->isBigEndian() ? self::WKB_NDR : self::WKB_XDR);
334 return $this->writer->writeDouble(NAN) . $this->writer->writeDouble(NAN);
336 $wkb = $this->writer->writeDouble($point->x()) . $this->writer->writeDouble($point->y());
339 $wkb .= $this->writer
[all...]
H A DWKT.php276 $writer = new \GEOSWKTWriter();
278 $writer->setRoundingPrecision(14);
280 $writer->setTrim(true);
282 return $writer->write($geometry->getGeos());
/plugin/xlsx2dw/packages/xlsx/
H A Dxlsx.mjs23024 'xmlns:ooow': "http://openoffice.org/2004/writer",
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DForm.php47 private $writer;
104 public function __construct(Mpdf $mpdf, Otl $otl, ColorConverter $colorConverter, BaseWriter $writer, FormWriter $formWriter)
109 $this->writer = $writer;
332 $this->writer->write($ClipPath);
341 $this->writer->write('Q');
466 $this->writer->write(sprintf('q %.3F 0 0 %.3F %.3F %.3F cm /I%d Do Q', $objattr['INNER-WIDTH'] * Mpdf::SCALE, $objattr['INNER-HEIGHT'] * Mpdf::SCALE, $objattr['INNER-X'] * Mpdf::SCALE, ($this->mpdf->h - ($objattr['INNER-Y'] + $objattr['INNER-HEIGHT'] )) * Mpdf::SCALE, $objattr['ID']));
731 $this->writer->object();
733 $this->writer->write('<<');
734 $this->writer
49 private $writer; global() variable in Mpdf\\Form
106 __construct(Mpdf $mpdf, Otl $otl, ColorConverter $colorConverter, BaseWriter $writer, FormWriter $formWriter) global() argument
[all...]
H A DFpdiTrait.php298 $this->writer->object();
356 $this->writer->object($n);
369 $value->value = $this->writer->escape($string);
393 $this->writer->object($n);
H A DGradient.php32 private $writer; variable in Mpdf\\Gradient
34 public function __construct(Mpdf $mpdf, SizeConverter $sizeConverter, ColorConverter $colorConverter, BaseWriter $writer) argument
39 $this->writer = $writer;
144 $this->writer->write($s);
613 $this->writer->write($s);
H A DMpdf.php967 private $writer;
1913 $this->writer->write(sprintf('/GS%d gs', $gs));
1949 $this->writer->write('EMC');
1953 $this->writer->write('/OC /OC1 BDC');
1956 $this->writer->write('/OC /OC2 BDC');
1959 $this->writer->write('/OC /OC3 BDC');
1973 $this->writer->write('%PDF-' . $this->pdf_version);
1974 $this->writer->write('%' . chr(226) . chr(227) . chr(207) . chr(211)); // 4 chars > 128 to show binary file
2775 $this->writer->write('/OCZ-index /ZI' . $id . ' BDC');
2783 $this->writer
964 private $writer; global() variable in Mpdf\\Mpdf
[all...]
H A DServiceFactory.php69 $writer = new BaseWriter($mpdf, $protection);
71 $gradient = new Gradient($mpdf, $sizeConverter, $colorConverter, $writer);
73 $formWriter = new FormWriter($mpdf, $writer);
75 $form = new Form($mpdf, $otl, $colorConverter, $writer, $formWriter);
106 $fontWriter = new FontWriter($mpdf, $writer, $fontCache, $fontDescriptor);
107 $metadataWriter = new MetadataWriter($mpdf, $writer, $form, $protection, $logger);
108 $imageWriter = new ImageWriter($mpdf, $writer);
109 $pageWriter = new PageWriter($mpdf, $form, $writer, $metadataWriter);
110 $bookmarkWriter = new BookmarkWriter($mpdf, $writer);
111 $optionalContentWriter = new OptionalContentWriter($mpdf, $writer);
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Writer/
H A DBackgroundWriter.php21 private $writer; variable in Mpdf\\Writer\\BackgroundWriter
23 public function __construct(Mpdf $mpdf, BaseWriter $writer) argument
26 $this->writer = $writer;
127 $this->writer->object();
128 $this->writer->write('<</ProcSet [/PDF /Text /ImageB /ImageC /ImageI]');
131 $this->writer->write('/XObject <</FO' . $image_id . ' ' . $img_obj . ' 0 R >>');
138 $this->writer->write('/ExtGState <<');
142 $this->writer->write('/' . $extgstate['trans'] . ' ' . $extgstate['n'] . ' 0 R');
144 $this->writer
[all...]
H A DBookmarkWriter.php21 private $writer; variable in Mpdf\\Writer\\BookmarkWriter
23 public function __construct(Mpdf $mpdf, BaseWriter $writer) argument
26 $this->writer = $writer;
83 $this->writer->object();
84 $this->writer->write('<</Title ' . $this->writer->utf16BigEndianTextString($o['t']));
85 $this->writer->write('/Parent ' . ($n + $o['parent']) . ' 0 R');
87 $this->writer->write('/Prev ' . ($n + $o['prev']) . ' 0 R');
90 $this->writer
[all...]
H A DColorWriter.php21 private $writer; variable in Mpdf\\Writer\\ColorWriter
23 public function __construct(Mpdf $mpdf, BaseWriter $writer) argument
26 $this->writer = $writer;
33 $this->writer->object();
35 $this->writer->write('[/Separation /' . str_replace(' ', '#20', $name));
36 $this->writer->write('/DeviceCMYK <<');
37 $this->writer->write('/Range [0 1 0 1 0 1 0 1] /C0 [0 0 0 0] ');
38 $this->writer->write(sprintf('/C1 [%.3F %.3F %.3F %.3F] ', $color['c'] / 100, $color['m'] / 100, $color['y'] / 100, $color['k'] / 100));
39 $this->writer
[all...]
H A DFontWriter.php23 private $writer;
35 public function __construct(Mpdf $mpdf, BaseWriter $writer, FontCache $fontCache, $fontDescriptor)
38 $this->writer = $writer;
73 $this->writer->object();
100 $this->writer->write('<</Length ' . strlen($font));
101 $this->writer->write('/Filter /FlateDecode');
102 $this->writer->write('/Length1 ' . $originalsize);
103 $this->writer->write('>>');
104 $this->writer
24 private $writer; global() variable in Mpdf\\Writer\\FontWriter
36 __construct(Mpdf $mpdf, BaseWriter $writer, FontCache $fontCache, $fontDescriptor) global() argument
[all...]
H A DFormWriter.php21 private $writer;
23 public function __construct(Mpdf $mpdf, BaseWriter $writer)
26 $this->writer = $writer;
33 $this->writer->object();
37 $this->writer->write('<</Type /XObject');
38 $this->writer->write('/Subtype /Form');
39 $this->writer->write('/Group ' . ($this->mpdf->n + 1) . ' 0 R');
40 $this->writer->write('/BBox [' . $info['x'] . ' ' . $info['y'] . ' ' . ($info['w'] + $info['x']) . ' ' . ($info['h'] + $info['y']) . ']');
43 $this->writer
22 private $writer; global() variable in Mpdf\\Writer\\FormWriter
24 __construct(Mpdf $mpdf, BaseWriter $writer) global() argument
[all...]
H A DImageWriter.php21 private $writer; variable in Mpdf\\Writer\\ImageWriter
23 public function __construct(Mpdf $mpdf, BaseWriter $writer) argument
26 $this->writer = $writer;
35 $this->writer->object();
39 $this->writer->write('<</Type /XObject');
40 $this->writer->write('/Subtype /Image');
41 $this->writer->write('/Width ' . $info['w']);
42 $this->writer->write('/Height ' . $info['h']);
45 $this->writer
[all...]
H A DJavaScriptWriter.php21 private $writer; variable in Mpdf\\Writer\\JavaScriptWriter
23 public function __construct(Mpdf $mpdf, BaseWriter $writer) argument
26 $this->writer = $writer;
31 $this->writer->object();
33 $this->writer->write('<<');
34 $this->writer->write('/Names [(EmbeddedJS) ' . (1 + $this->mpdf->n) . ' 0 R ]');
35 $this->writer->write('>>');
36 $this->writer->write('endobj');
38 $this->writer
[all...]
H A DMetadataWriter.php26 private $writer;
43 public function __construct(Mpdf $mpdf, BaseWriter $writer, Form $form, Protection $protection, LoggerInterface $logger)
46 $this->writer = $writer;
54 $this->writer->object();
146 $this->writer->write('<</Type/Metadata/Subtype/XML/Length ' . strlen($m) . '>>');
147 $this->writer->stream($m);
148 $this->writer->write('endobj');
153 $this->writer->write('/Producer ' . $this->writer
27 private $writer; global() variable in Mpdf\\Writer\\MetadataWriter
44 __construct(Mpdf $mpdf, BaseWriter $writer, Form $form, Protection $protection, LoggerInterface $logger) global() argument
[all...]
H A DObjectWriter.php22 private $writer; variable in Mpdf\\Writer\\ObjectWriter
24 public function __construct(Mpdf $mpdf, BaseWriter $writer) argument
27 $this->writer = $writer;
43 $this->writer->object($this->mpdf->_obj_stack[$filename][$n][0]);
51 $this->writer->write('endobj');
H A DOptionalContentWriter.php21 private $writer; variable in Mpdf\\Writer\\OptionalContentWriter
23 public function __construct(Mpdf $mpdf, BaseWriter $writer) argument
26 $this->writer = $writer;
33 $this->writer->object();
35 $this->writer->write('<</Type /OCG /Name ' . $this->writer->string('Print only'));
36 $this->writer->write('/Usage <</Print <</PrintState /ON>> /View <</ViewState /OFF>>>>>>');
37 $this->writer->write('endobj');
39 $this->writer
[all...]
H A DPageWriter.php27 private $writer; variable in Mpdf\\Writer\\PageWriter
34 public function __construct(Mpdf $mpdf, Form $form, BaseWriter $writer, MetadataWriter $metadataWriter) argument
38 $this->writer = $writer;
144 $this->writer->object();
145 $this->writer->write('<</Type /Page');
146 $this->writer->write('/Parent 1 0 R');
150 $this->writer->write(sprintf('/MediaBox [0 0 %.3F %.3F]', $hPt, $wPt));
160 $this->writer->write(sprintf('/BleedBox [%.3F %.3F %.3F %.3F]', $x0, $y0, $x1, $y1));
163 $this->writer
[all...]
H A DResourceWriter.php22 private $writer; variable in Mpdf\\Writer\\ResourceWriter
76 BaseWriter $writer, argument
89 $this->writer = $writer;
128 $this->writer->write('2 0 obj');
129 $this->writer->write('<</ProcSet [/PDF /Text /ImageB /ImageC /ImageI]');
131 $this->writer->write('/Font <<');
138 $this->writer->write('/F' . $font['subsetfontids'][$k] . ' ' . $font['n'][$k] . ' 0 R');
141 $this->writer->write('/F' . $font['i'] . ' ' . $font['n'] . ' 0 R');
144 $this->writer
[all...]
/plugin/dw2pdf/vendor/mpdf/mpdf/ttfonts/
H A DTharlonOFL.txt45 writer or other person who contributed to the Font Software.
H A DDhyanaOFL.txt46 writer or other person who contributed to the Font Software.
H A DJomolhari-OFL.txt50 writer or other person who contributed to the Font Software.

12345678910