Skip to content

Commit f0ece1c

Browse files
committed
Updated to tFPDF 1.31
1 parent 258b5f8 commit f0ece1c

File tree

6 files changed

+601
-520
lines changed

6 files changed

+601
-520
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
font/unifont/*.dat
2+
font/unifont/*.php
13
vendor

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,14 @@ when using Write() etc.
2525

2626
If you're using Composer to manage dependencies, you can use
2727

28-
$ composer require setasign/tfpdf:1.25
28+
$ composer require setasign/tfpdf:1.31
2929

3030
or you can include the following in your composer.json file:
3131

3232
```json
3333
{
3434
"require": {
35-
"setasign/tfpdf": "1.25"
35+
"setasign/tfpdf": "1.31"
3636
}
3737
}
3838
```

composer.json

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,19 @@
11
{
22
"name": "setasign/tfpdf",
3-
"version": "1.25",
3+
"version": "1.31",
44
"homepage": "http://fpdf.org/en/script/script92.php",
5-
"description": "This class is a modified version of FPDF that adds UTF-8 support. It is based on FPDF 1.7.",
5+
"description": "This class is a modified version of FPDF that adds UTF-8 support. As of version 1.31 it is based on FPDF 1.82. Before it was based on FPDF 1.7.",
66
"type": "library",
77
"keywords": ["pdf", "fpdf", "unicode", "tfpdf"],
88
"license": "LGPL-2.1",
99
"authors": [
1010
{
11-
"name": "Ian Back",
12-
"email": "ian@bpm1.com"
11+
"name": "Ian Back"
12+
},
13+
{
14+
"name": "Tycho Veltmeijer",
15+
"email": "tfpdf@tychoveltmeijer.nl",
16+
"role": "Maintainer"
1317
},
1418
{
1519
"name": "Olivier Plathey",

ex.pdf

27 Bytes
Binary file not shown.

info.htm

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,14 @@
1212
<body>
1313
<h1>tFPDF</h1>
1414
<h2>Informations</h2>
15-
Author: <a href="mailto:ian@bpm1.com?subject=tFPDF">Ian Back</a><br>
15+
Original author: Ian Back<br>
16+
Maintainer : <a href="mailto:tfpdf@tychoveltmeijer.nl?subject=tFPDF">Tycho Veltmeijer</a><br>
1617
License: LGPL
1718
<h2>Description</h2>
1819
This class is a modified version of FPDF that adds UTF-8 support. Moreover, it embeds only
1920
the necessary parts of the fonts that are used in the document, making the file size much
2021
smaller than if the whole fonts were embedded. These features were originally developed
21-
for the <a href="http://www.mpdf1.com/mpdf/" target="_blank">mPDF</a> project.<br>
22+
for the <a href="https://mpdf.github.io/" target="_blank">mPDF</a> project.<br>
2223
<br>
2324
To use a Unicode font in your script, pass the font file name as third parameter of
2425
<code>AddFont()</code> and <code>true</code> as fourth parameter. The font may be located

0 commit comments

Comments
 (0)