Lines Matching refs:pages
41 * Indirect objects of resolved pages.
45 protected $pages = [];
101 $pages = PdfType::resolve(PdfDictionary::get($catalog, 'Pages'), $this->parser);
102 $count = PdfType::resolve(PdfDictionary::get($pages, 'Count'), $this->parser);
140 $page = $this->pages[$pageNumber - 1];
172 $page = $this->pages[$pageNumber - 1] = $readPages($kids);
178 // let's reset the pages array and read all page objects
179 $this->pages = [];
181 $page = $this->pages[$pageNumber - 1];
184 $this->pages[$pageNumber - 1] = $page;
192 * Walk the page tree and resolve all indirect objects of all pages.
201 if (\count($this->pages) > 0) {
213 $this->pages[] = $reference;
223 $this->pages[] = $object;
229 $pages = PdfType::resolve(PdfDictionary::get($catalog, 'Pages'), $this->parser);
230 $count = PdfType::resolve(PdfDictionary::get($pages, 'Count'), $this->parser);
231 $kids = PdfType::resolve(PdfDictionary::get($pages, 'Kids'), $this->parser);