Pdf-maker

Latest version: v0.0.55

Safety actively analyzes 723650 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 4 of 5

0.0.36

* Fix the error of embedding fonts.

Source font file size:

![alt text](image-2.png)

Extracted font file size:

![alt text](image-3.png)

There is a difference of 4 bytes. The extracted file missed four charachters. So the issue might happen
during the hex encoding procedure.

![alt text](image-4.png)

Furtherly, it is noticed that the difference happens after the realignment of the hexadecimal representation,
in which errors might happen.

![alt text](image-5.png)

Finally identify the issue: should be len(hex_stream) // 64 instead of that + 1.

![alt text](image-6.png)

Three fonts are all embedded.

![alt text](image-7.png)

0.0.35

* Add multiply fonts to pages.
* TrueType fonts like Arial are displayed well now, but Type 1 font don't work well.
Possible reason: comparing extracted font file by pdf-parser.py from the pdf and the source file times.ttf,
it is found that extracted font file lost some information. Times ttf might be not TrueType font.

![alt text](image.png)

![alt text](image-1.png)

0.0.34

* Try to solve the embedding issue, some potential problems found: length calculation of the font file
stream.
* A javascript module named [fontsubset](https://github.com/flashlizi/fontsubset) can be used to extract
subset from a full font file so the size of pdf with embedded font files can be decreased.
Usage: fontsubset -s "String containing characters might be included" fontFile outputFile

0.0.33

* Add rotation attribute for text item (might also work for other items like rect).
* Change the priorities of three rich text tags, now color > super/subscript > break. That means
<red>AB<sub>CD</sub><r>EF<red> is allowed, but AB<sub><red>CD</red></sub> will be not displayed correctly.
And these tags should not separate others, like <red><sub>CD</red></sub>, which will be displayed wrong.

0.0.32

* Try to embed font files into the Font Descriptor objects.
[This answer](https://stackoverflow.com/a/76125971/22143697) show an example of embedding font files,
his pdf works well in Adobe Acrobat. But I failed to do this, still trying to fine why.
* For reference, [This answer](https://stackoverflow.com/a/3489099/22143697) introduced how to extract
font info from a pdf file.
* This issue haven't been solve.

0.0.31

* Fix font issue, currently Arial font works well, Adobe can successfully recognize the texts,
but other fonts may not work for Adobe Acrobat. Adobe Illustrator can work well for all fonts.
* Add auto middle alignment for tests.

Page 4 of 5

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.