Proyectos de Subversion Moodle

Rev

| Ultima modificación | Ver Log |

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