Searched refs:PdfDictionary (Results 1 – 10 of 10) sorted by relevance
| /plugin/dw2pdf/vendor/setasign/fpdi/src/PdfReader/ |
| D | PdfReader.php | 16 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::get($object->value, 'Count')… 229 $pages = PdfType::resolve(PdfDictionary::get($catalog, 'Pages'), $this->parser); [all …]
|
| D | Page.php | 16 use setasign\Fpdi\PdfParser\Type\PdfDictionary; alias 39 * @var PdfDictionary 80 * @return PdfDictionary 88 …$this->pageDictionary = PdfDictionary::ensure(PdfType::resolve($this->getPageObject(), $this->pars… 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/ |
| D | PdfStream.php | 33 * @param PdfDictionary $dictionary 39 …public static function parse(PdfDictionary $dictionary, StreamReader $reader, PdfParser $parser = … 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::get($decodeParam, 'Predictor', PdfNumeric::create(1));
|
| D | PdfDictionary.php | 21 class PdfDictionary extends PdfType class
|
| /plugin/dw2pdf/vendor/setasign/fpdi/src/PdfParser/CrossReference/ |
| D | AbstractReader.php | 13 use setasign\Fpdi\PdfParser\Type\PdfDictionary; alias 30 * @var PdfDictionary 50 * @return PdfDictionary 85 $trailer = $this->parser->readValue(null, PdfDictionary::class);
|
| D | ReaderInterface.php | 12 use setasign\Fpdi\PdfParser\Type\PdfDictionary; alias 32 * @return PdfDictionary
|
| D | CrossReference.php | 13 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/ |
| D | PdfParser.php | 16 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/mpdf/mpdf/src/ |
| D | FpdiTrait.php | 8 use setasign\Fpdi\PdfParser\Type\PdfDictionary; alias 208 $type = PdfName::ensure(PdfType::resolve(PdfDictionary::get($annotation, 'Type'), $parser)); 209 … $subtype = PdfName::ensure(PdfType::resolve(PdfDictionary::get($annotation, 'Subtype'), $parser)); 210 $link = PdfDictionary::ensure(PdfType::resolve(PdfDictionary::get($annotation, 'A'), $parser)); 218 …$position = PdfArray::ensure(PdfType::resolve(PdfDictionary::get($annotation, 'Rect'), $parser), 4… 220 $uri = PdfString::ensure(PdfType::resolve(PdfDictionary::get($link, 'URI'), $parser));
|
| /plugin/dw2pdf/vendor/setasign/fpdi/src/ |
| D | FpdiTrait.php | 19 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()… 351 $filter = PdfDictionary::get($stream->value, 'Filter'); 355 … $length = PdfType::resolve(PdfDictionary::get($stream->value, 'Length'), $reader->getParser()); 517 } elseif ($value instanceof PdfDictionary) {
|