Lines Matching refs:n

55 		$this->mpdf->MetadataRoot = $this->mpdf->n;
63 $m = '<?xpacket begin="' . chr(239) . chr(187) . chr(191) . '" id="W5M0MpCehiHzreSzNTczkc9d"?>' . "\n"; // begin = FEFF BOM
64 $m .= ' <x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="3.1-701">' . "\n";
65 $m .= ' <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">' . "\n";
66 $m .= ' <rdf:Description rdf:about="uuid:' . $uuid . '" xmlns:pdf="http://ns.adobe.com/pdf/1.3/">' . "\n";
67 $m .= ' <pdf:Producer>' . $Producer . '</pdf:Producer>' . "\n";
69 $m .= ' <pdf:Keywords>' . $this->mpdf->keywords . '</pdf:Keywords>' . "\n";
71 $m .= ' </rdf:Description>' . "\n";
73 $m .= ' <rdf:Description rdf:about="uuid:' . $uuid . '" xmlns:xmp="http://ns.adobe.com/xap/1.0/">' . "\n";
74 $m .= ' <xmp:CreateDate>' . $CreationDate . '</xmp:CreateDate>' . "\n";
75 $m .= ' <xmp:ModifyDate>' . $CreationDate . '</xmp:ModifyDate>' . "\n";
76 $m .= ' <xmp:MetadataDate>' . $CreationDate . '</xmp:MetadataDate>' . "\n";
78 $m .= ' <xmp:CreatorTool>' . $this->mpdf->creator . '</xmp:CreatorTool>' . "\n";
80 $m .= ' </rdf:Description>' . "\n";
83 $m .= ' <rdf:Description rdf:about="uuid:' . $uuid . '" xmlns:dc="http://purl.org/dc/elements/1.1/">' . "\n";
84 $m .= ' <dc:format>application/pdf</dc:format>' . "\n";
90 </dc:title>' . "\n";
97 </dc:subject>' . "\n";
104 </dc:description>' . "\n";
111 </dc:creator>' . "\n";
113 $m .= ' </rdf:Description>' . "\n";
121 $m .= ' <rdf:Description rdf:about="uuid:' . $uuid . '" xmlns:pdfx="http://ns.adobe.com/pdfx/1.3/" pdfx:Apag_PDFX_Checkup="1.3" pdfx:GTS_PDFXConformance="PDF/X-1a:2003" pdfx:GTS_PDFXVersion="PDF/X-1:2003"/>' . "\n";
130 $m .= ' <rdf:Description rdf:about="uuid:' . $uuid . '" xmlns:pdfaid="http://www.aiim.org/pdfa/ns/id/" >' . "\n";
131 $m .= ' <pdfaid:part>' . $part . '</pdfaid:part>' . "\n";
132 $m .= ' <pdfaid:conformance>' . $conformance . '</pdfaid:conformance>' . "\n";
134 $m .= ' <pdfaid:amd>2005</pdfaid:amd>' . "\n";
136 $m .= ' </rdf:Description>' . "\n";
139 $m .= ' <rdf:Description rdf:about="uuid:' . $uuid . '" xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/">' . "\n";
140 $m .= ' <xmpMM:DocumentID>uuid:' . $uuid . '</xmpMM:DocumentID>' . "\n";
141 $m .= ' </rdf:Description>' . "\n";
142 $m .= ' </rdf:RDF>' . "\n";
143 $m .= ' </x:xmpmeta>' . "\n";
144 $m .= str_repeat(str_repeat(' ', 100) . "\n", 20); // 2-4kB whitespace padding required
191 $this->mpdf->OutputIntentRoot = $this->mpdf->n;
207 $this->writer->write('/DestOutputProfile ' . ($this->mpdf->n + 1) . ' 0 R');
214 $this->writer->write('/DestOutputProfile ' . ($this->mpdf->n + 1) . ' 0 R');
271 $this->mpdf->associatedFiles[$k]['_root'] = $this->mpdf->n; // we store the root ref of object for future reference (e.g. /EmbeddedFiles catalog)
278 $this->writer->write('/F ' . ($this->mpdf->n + 1) . ' 0 R');
279 $this->writer->write('/UF ' . ($this->mpdf->n + 1) . ' 0 R');
327 $this->mpdf->associatedFilesRoot = $this->mpdf->n;
480 $loff .= $layer['n'] . ' 0 R ';
482 $l .= $layer['n'] . ' 0 R ';
484 $lall .= $layer['n'] . ' 0 R ';
506 for ($n = 1; $n <= $nb; $n++) {
508 if (isset($this->mpdf->PageLinks[$n]) || isset($this->mpdf->PageAnnots[$n]) || count($this->form->forms) > 0) {
510 $wPt = $this->mpdf->pageDim[$n]['w'] * Mpdf::SCALE;
511 $hPt = $this->mpdf->pageDim[$n]['h'] * Mpdf::SCALE;
514 if (isset($this->mpdf->PageLinks[$n])) {
516 foreach ($this->mpdf->PageLinks[$n] as $key => $pl) {
526 $annot .= ' /NM ' . $this->writer->string(sprintf('%04u-%04u', $n, $key));
574 if (isset($this->mpdf->PageAnnots[$n])) {
576 foreach ($this->mpdf->PageAnnots[$n] as $key => $pl) {
624 $annot .= '/EF <</F ' . ($this->mpdf->n + 1) . ' 0 R>>';
639 $annot .= ' /NM ' . $this->writer->string(sprintf('%04u-%04u', $n, 2000 + $key));
696 $annot .= ' /Popup ' . ($this->mpdf->n + 1) . ' 0 R';
752 $annot .= ' /Parent ' . ($this->mpdf->n - 1) . ' 0 R';
762 $this->form->_putFormItems($n, $hPt);
770 $this->form->_putRadioItems($n);
792 $this->writer->write('/Size ' . ($this->mpdf->n + 1));
793 $this->writer->write('/Root ' . $this->mpdf->n . ' 0 R');