-
Notifications
You must be signed in to change notification settings - Fork 80
The Return of the Embedded Font Issue #102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Encountered the same error recently Faced issue on the versions:
Resolution:
I can confirm that downgrading to previous versions of prawn and ttfunk resolved the issue. not sure though if the issue is from ttfunk or prawn upgrade |
@pointlessone something I forgot to mention is the PDF renders perfectly fine in Chrome and Evince, the error only appears in Adobe Reader. Which I imagine means the issue is extremely subtle and complicated 😅 |
For me this causes CUPS not being able to print my PDF's over the IPP protocol. After reverting back to 1.7 everything works correctly again. |
Same as what @xtr3me noted: we also have issues printing over CUPS, and reverting to If it helps, printing over CUPS gives the following error (which is printed by the printer):
|
I've ran a diff on an embedded font in a prawn pdf between ttfunk 1.7.0 and 1.8.0, and the only differences are in the Apparently the old version just kept the
There are several correct ways to calculate the value. It could also measure only the length of the longest glyph program (that's what the OpenType spec says). In that case, the result would be 133 in the subsetted font. The value 61 is wrong in any case. |
I am outputting PDFs using Japanese fonts, e.g. IPAFont. As reported here, I am having problems opening them in Acrobat Reader. I am not familiar with ttfunk / maxptable / font implementations, so I may be thinking about the wrong thing, but I doubt that the code below is really correct. The following process is described at line 110 of ttf_encoder.rb. ttfunk/lib/ttfunk/ttf_encoder.rb Line 110 in 885061e
but, the receiver process appears to expect new_to_old_glyph. ttfunk/lib/ttfunk/table/maxp.rb Line 86 in 885061e
Is the argument correct? If this is not relevant, please ignore this comment. |
Same problem here with ttfunk 1.8. It is required by prawn 2.5.0. The funny thing is when opened in the browser pdf is displayed without special UTF-8 characters. But when printed, special characters are printed ok. This is all on Windows 11 with the last version of Acrobat Reader. The previous version 8000 of the reader or Linux pdf readers are perfectly ok. Reverting to ttfunk 1.7 also reverted pdf-core to 0.9.0 and prawn to 2.4.0 and it works as expected. by |
I would also like to report unique behavior for PDFs generated using ttfunk 1.8. |
Heads-up, Please note that I am not sure if there is any other glyph missing but in a superficial check over the list of all characters I could produce with the keyboard the all did appear in the reader. There was also a notification "cannot extract embedded font" which stop appearing. This is the list of chars/glyphs I've used, I hope it helps anyone who may need something to start from.
|
Eager to try that, thank you. |
@jasonperrone This is an interesting observation. Could you please attach both the old "broken" and the new versions of the font? |
We experienced the same issue. opensans-new.zip With the newer version + ttfunk 1.8 Adobe Acrobat is still throwing an error, but the letters seem to be shown correctly (the missing |
I have also downgraded to prawn 2.4.0, ttfunk 1.7.0. I think that's all I can do. I downloaded the current versions of all the OpenSans-xxx.ttf fonts I use and they are all identical to the ones I already had. |
Edit: TL;TR : Nothing new, except 'g' in bold OpenSans still missing and NotoSansThaiLooped is also affected (Bhat symbol). Long text: I tried NotoSans instead. Now, only the € sign is missing. I use In December 2023 I had added a comment to my code: Since the € symbol is still missing, I will now try the downgrade to prawn 2.4. Acrobat Reader version is 2024.002.21005 |
It's not the fonts that are broken. The maxp table calculations in ttfunk are currently incorrect. Any given font or even different subsets of the same font may work or not work. The only way to fix it is to correct the calculations, or to go back to the previous code version, which didn't touch the values inside the maxp table when embedding a font. |
Hey, |
There's an open PR (#104 ) that attempts to fix the issue with the maxp. |
@wuarmin In the meantime lock those versions in Gemfile:
|
This is an issue for us as well. Would be great to see this fixed! Thanks guys! |
Skips ttfunk 1.8 until issue prawnpdf/ttfunk#102 fixed
Hey @pointlessone thanks for your feedback! |
I mean, the plan is not complex: either someone contributes a fix or I claw out some time. I make no promises on my part at the moment. I haven't looked into the issue but if my memory serves me right it's not maxp table. I think it's incorrect subsetting of the CFF table. It requires reindexing, or encoding remapping, or something. TBH, I don't remember which issue is this, there was a few very similar but actually different issues around subsetting. One thing that is relatively easy you can help with is to go through the tickets, try repro scripts with both OTF and TTF fonts, and subsetting enabled and disabled (so 4 cases total). Post your discoveries in the relevant threads. |
To quote myself:
The easiest solution would be to revert the maxp subsetting to the previous behaviour. It seems that is what PR #104 does. The maxp table contains values to help the renderer determine how much memory to reserve for different aspects of a font, so it isn't a problem when the values in the maxp table are "too large" (= matching the un-subsetted font). |
So someone has contributed a fix (at least, a first step which makes the gem functional again), but you've mentioned a lack of time to merge it. It's not a big change to review, and a revert should be pretty acceptable for this situation.
Ideally, I think we want automated tests that show what broke, then it can prove how it was fixed. There's already automated tests (https://github.com/prawnpdf/ttfunk/tree/master/spec), and there's both an OTF and TTF test, so maybe these tests need expanding to cover the bug. |
@dacook Reviewing #104 is not that hard as it's a revert. Testing is the hard part. Fonts are literally half a century of cruft. What might work for one font file is not guaranteed to work with all or even most. Even if the thing is fully spec-compliant it still might not work in many cases. This makes automated testing very hard, too. You can't just read the spec and encode that. I mean, you should and that's a good first step but then you also have to test for compatibility with other software. Anyway, since you spoke up would you please test the change with a bunch of fonts please? |
Sure, I'm not really familiar with fonts so wasn't sure how best to test, but scrolling back to the top I realise there's a minimal repro right there, so I will start with that when I get a chance tomorrow. |
I set up a test which is ready to feed fonts into: https://github.com/dacook/ttfunk-test |
Not only Adobe Acrobat but also Apple Preview, PDF.js, and something based on poppler (e.g. Evince). And also a printer because documents can render OK on screen but still be broken when printed. |
There is a bug where the wrong glyphs are used to calculate maxp. Edit: this was actually pointed out almost a year ago #102 (comment) I've only tested for our small use case which doesn't involve any composite glyphs and it fixed it for me. I don't know if the rest of the maxp calculations are correct if there are composite glyphs. |
Thank you for taking the initiative! As the problem lies not in the PDF embedding, but in the embedded font itself, it may be easier to check the validity of the modified font(s) directly. For example, running the broken font from my first post (#102 (comment)) through the OpenType Sanitizer, I get this message related to the maxp table:
Not sure why this is listed as a warning as it actually breaks the rendering of the font. There's also the Font Validator which finds this: |
Any updates on this? It would be great if there is a solution besides downgrading ttfunk. |
1.8.0
has introduced issues with embedding fonts withprawn
, see prawnpdf/prawn#1346Minimal reproduction:
The Euro symbol seems to trigger the bug.
The text was updated successfully, but these errors were encountered: