12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace Fpdi\PdfParser\CrossReference;
- use Fpdi\PdfParser\Type\PdfDictionary;
- interface ReaderInterface
- {
-
- public function getOffsetFor($objectNumber);
-
- public function getTrailer();
- }
|