Home
last modified time | relevance | path

Searched refs:PdfDictionary (Results 1 – 9 of 9) sorted by relevance

/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfReader/
H A DPdfReader.php16 use setasign\Fpdi\PdfParser\Type\PdfDictionary; alias
101 $pages = PdfType::resolve(PdfDictionary::get($catalog, 'Pages'), $this->parser);
102 $count = PdfType::resolve(PdfDictionary::get($pages, 'Count'), $this->parser);
150 $type = PdfDictionary::get($object->value, 'Type');
153 return $readPages(PdfDictionary::get($object->value, 'Kids'));
167 $type = PdfDictionary::get($dict, 'Type');
170 $kids = PdfType::resolve(PdfDictionary::get($dict, 'Kids'), $this->parser);
218 $type = PdfDictionary::get($object->value, 'Type');
221 $readPages(PdfDictionary::get($object->value, 'Kids'), PdfDictionary
[all...]
H A DPage.php16 use setasign\Fpdi\PdfParser\Type\PdfDictionary; alias
39 * @var PdfDictionary
80 * @return PdfDictionary
88 $this->pageDictionary = PdfDictionary::ensure(PdfType::resolve($this->getPageObject(), $this->parser));
121 $parentDict = PdfType::resolve(PdfDictionary::get($dict, 'Parent'), $this->parser);
122 while ($parentDict instanceof PdfDictionary) {
132 $parentDict = PdfType::resolve(PdfDictionary::get($parentDict, 'Parent'), $this->parser);
245 $contents = PdfType::resolve(PdfDictionary::get($dict, 'Contents'), $this->parser);
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/Type/
H A DPdfStream.php33 * @param PdfDictionary $dictionary
39 public static function parse(PdfDictionary $dictionary, StreamReader $reader, PdfParser $parser = null)
83 * @param PdfDictionary $dictionary
87 public static function create(PdfDictionary $dictionary, $stream)
141 $length = PdfDictionary::get($this->value, 'Length');
231 $filters = PdfDictionary::get($this->value, 'Filter');
242 $decodeParams = PdfDictionary::get($this->value, 'DecodeParms');
256 $decodeParam = ($decodeParams[$key] instanceof PdfDictionary ? $decodeParams[$key] : null);
272 if ($decodeParam instanceof PdfDictionary) {
273 $predictor = PdfDictionary
[all...]
H A DPdfDictionary.php21 class PdfDictionary extends PdfType class
125 * Ensures that the passed value is a PdfDictionary instance.
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/CrossReference/
H A DAbstractReader.php13 use setasign\Fpdi\PdfParser\Type\PdfDictionary; alias
30 * @var PdfDictionary
50 * @return PdfDictionary
85 $trailer = $this->parser->readValue(null, PdfDictionary::class);
H A DReaderInterface.php12 use setasign\Fpdi\PdfParser\Type\PdfDictionary; alias
32 * @return PdfDictionary
H A DCrossReference.php13 use setasign\Fpdi\PdfParser\Type\PdfDictionary; alias
116 * @return PdfDictionary
249 $type = PdfDictionary::get($stream->value, 'Type');
275 * @param PdfDictionary $dictionary
278 protected function checkForEncryption(PdfDictionary $dictionary)
/plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/
H A DPdfParser.php16 use setasign\Fpdi\PdfParser\Type\PdfDictionary; alias
196 * @return PdfDictionary
206 $catalog = PdfType::resolve(PdfDictionary::get($trailer, 'Root'), $this);
208 return PdfDictionary::ensure($catalog);
267 return PdfDictionary::parse($this->tokenizer, $this->streamReader, $this);
364 '<<' => PdfDictionary::class,
/plugin/dw2pdf/vendor/setasign/fpdi/src/
H A DFpdiTrait.php19 use setasign\Fpdi\PdfParser\Type\PdfDictionary; alias
270 $dict = new PdfDictionary();
278 $dict->value['Group'] = PdfDictionary::create([
335 $contentsObject = PdfType::resolve(PdfDictionary::get($pageDict, 'Contents'), $reader->getParser(), true);
351 $filter = PdfDictionary::get($stream->value, 'Filter');
355 $length = PdfType::resolve(PdfDictionary::get($stream->value, 'Length'), $reader->getParser());
517 } elseif ($value instanceof PdfDictionary) {