Fpdi.php 748 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. /**
  3. * This file is part of FPDI
  4. *
  5. * @package setasign\Fpdi
  6. * @copyright Copyright (c) 2024 Setasign GmbH & Co. KG (https://www.setasign.com)
  7. * @license http://opensource.org/licenses/mit-license The MIT License
  8. */
  9. namespace setasign\Fpdi;
  10. use setasign\Fpdi\PdfParser\CrossReference\CrossReferenceException;
  11. use setasign\Fpdi\PdfParser\PdfParserException;
  12. use setasign\Fpdi\PdfParser\Type\PdfIndirectObject;
  13. use setasign\Fpdi\PdfParser\Type\PdfNull;
  14. /**
  15. * Class Fpdi
  16. *
  17. * This class let you import pages of existing PDF documents into a reusable structure for FPDF.
  18. */
  19. class Fpdi extends FpdfTpl
  20. {
  21. use FpdiTrait;
  22. use FpdfTrait;
  23. /**
  24. * FPDI version
  25. *
  26. * @string
  27. */
  28. const VERSION = '2.6.1';
  29. }