-
-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add class placeholders * Add units conversion function * Update tc-lib-pdf-graph * SVG tranforamtion * Update tc-lib-pdf-encrypt and encode /DA.
- Loading branch information
1 parent
29aff77
commit 7aa4b1b
Showing
12 changed files
with
406 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
8.0.77 | ||
8.0.79 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?php | ||
|
||
/** | ||
* CSS.php | ||
* | ||
* @since 2002-08-03 | ||
* @category Library | ||
* @package Pdf | ||
* @author Nicola Asuni <[email protected]> | ||
* @copyright 2002-2024 Nicola Asuni - Tecnick.com LTD | ||
* @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT) | ||
* @link https://github.com/tecnickcom/tc-lib-pdf | ||
* | ||
* This file is part of tc-lib-pdf software library. | ||
*/ | ||
|
||
namespace Com\Tecnick\Pdf; | ||
|
||
use Com\Tecnick\Pdf\Exception as PdfException; | ||
|
||
/** | ||
* Com\Tecnick\Pdf\CSS | ||
* | ||
* CSS PDF class | ||
* | ||
* @since 2002-08-03 | ||
* @category Library | ||
* @package Pdf | ||
* @author Nicola Asuni <[email protected]> | ||
* @copyright 2002-2024 Nicola Asuni - Tecnick.com LTD | ||
* @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT) | ||
* @link https://github.com/tecnickcom/tc-lib-pdf | ||
*/ | ||
abstract class CSS extends \Com\Tecnick\Pdf\SVG | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?php | ||
|
||
/** | ||
* HTML.php | ||
* | ||
* @since 2002-08-03 | ||
* @category Library | ||
* @package Pdf | ||
* @author Nicola Asuni <[email protected]> | ||
* @copyright 2002-2024 Nicola Asuni - Tecnick.com LTD | ||
* @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT) | ||
* @link https://github.com/tecnickcom/tc-lib-pdf | ||
* | ||
* This file is part of tc-lib-pdf software library. | ||
*/ | ||
|
||
namespace Com\Tecnick\Pdf; | ||
|
||
use Com\Tecnick\Pdf\Exception as PdfException; | ||
|
||
/** | ||
* Com\Tecnick\Pdf\HTML | ||
* | ||
* HTML PDF class | ||
* | ||
* @since 2002-08-03 | ||
* @category Library | ||
* @package Pdf | ||
* @author Nicola Asuni <[email protected]> | ||
* @copyright 2002-2024 Nicola Asuni - Tecnick.com LTD | ||
* @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT) | ||
* @link https://github.com/tecnickcom/tc-lib-pdf | ||
*/ | ||
abstract class HTML extends \Com\Tecnick\Pdf\CSS | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?php | ||
|
||
/** | ||
* JavaScript.php | ||
* | ||
* @since 2002-08-03 | ||
* @category Library | ||
* @package Pdf | ||
* @author Nicola Asuni <[email protected]> | ||
* @copyright 2002-2024 Nicola Asuni - Tecnick.com LTD | ||
* @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT) | ||
* @link https://github.com/tecnickcom/tc-lib-pdf | ||
* | ||
* This file is part of tc-lib-pdf software library. | ||
*/ | ||
|
||
namespace Com\Tecnick\Pdf; | ||
|
||
use Com\Tecnick\Pdf\Exception as PdfException; | ||
|
||
/** | ||
* Com\Tecnick\Pdf\JavaScript | ||
* | ||
* JavaScript PDF class | ||
* | ||
* @since 2002-08-03 | ||
* @category Library | ||
* @package Pdf | ||
* @author Nicola Asuni <[email protected]> | ||
* @copyright 2002-2024 Nicola Asuni - Tecnick.com LTD | ||
* @license http://www.gnu.org/copyleft/lesser.html GNU-LGPL v3 (see LICENSE.TXT) | ||
* @link https://github.com/tecnickcom/tc-lib-pdf | ||
* | ||
* @SuppressWarnings(PHPMD.DepthOfInheritance) | ||
*/ | ||
abstract class JavaScript extends \Com\Tecnick\Pdf\HTML | ||
{ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.