https://github.com/mazanax/fpdi_with_links
FPDI driver supports links annotations
https://github.com/mazanax/fpdi_with_links
fpdi pdf php php-pdf php7
Last synced: 3 months ago
JSON representation
FPDI driver supports links annotations
- Host: GitHub
- URL: https://github.com/mazanax/fpdi_with_links
- Owner: mazanax
- License: gpl-3.0
- Created: 2019-12-05T11:31:38.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-12-05T11:35:02.000Z (over 5 years ago)
- Last Synced: 2025-03-11T15:17:24.169Z (3 months ago)
- Topics: fpdi, pdf, php, php-pdf, php7
- Language: PHP
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
- License: LICENSE
Awesome Lists containing this project
README
[](https://php.net/)
# FPDIWithLinks
FPDI Driver supports links annotations### Installation
`composer require mazanax/fpdi_with_links`### Example (from [Setasign/FPDI](https://github.com/Setasign/FPDI))
```php
AddPage();
// set the source file
$pdf->setSourceFile('Fantastic-Speaker.pdf');
// import page 1
$tplId = $pdf->importPage(1);
// use the imported page and place it at point 10,10 with a width of 100 mm
$pdf->useTemplate($tplId, 10, 10, 100);$pdf->Output();
```