Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firefox pdf form displays a "4" in checkbox (instead of a checkmark); Works fine in IE & Chrome

I am creating a pdf document (via ColdFusion), but when I preview the rendered pdf in Firefox, I get the number "4" where my checkmarks are supposed to be (see photo below). When I preview the exact same pdf in Chrome or IE, I see the checkmark, and it all works perfectly!

I am pre-populating the pdf form fields (via ColdFusion session variables), and then rendering the pdf using the following markup:

<cfpdfform source="82040.pdf" action="populate">
   <cfpdfformparam name="org" value="">
</cfpdfform>

Here is the resulting pdf form in Internet Explorer:

Note how the checkmark is rendered properly: the checkmark renders normally in IE

Here is the same form previewed in FireFox:

Note how the the checkbox has a "4" instead of a checkmark: In firefox I get a "4" instead of a checkmark

Any help would be greatly appreciated!

like image 292
Vicki Avatar asked Jan 10 '15 23:01

Vicki


People also ask

How do you put a checkmark in a box in PDF?

Select a comment in the Comments list. From the options menu , select Add Checkmark. You can also right-click the comment and select Add Checkmark. A check mark icon appears on the comment.

How do I edit a checkmark in PDF?

Click the Stamp tool (top row - far right icon - the shape ids it). Click "Sign Here" and select the check mark. You can also make use of the Sticky Note. While the default for this is a "bubble", once placed you open its properties and change the icon to a check mark (change to desired color also).

Does Firefox support fillable PDF?

Fill out forms in PDF Viewer Some PDF files have interactive fields to fill in data (such as on forms). Using Firefox's built-in PDF viewer you can fill out fields such as text, check boxes, and radio buttons.


2 Answers

It is a bug with Firefox's PDF Viewer. Currently, there is no fix. As radiovisual's post points out, the bug in the underlying library (pdf.js) was supposedly fixed. However, there is still the issue of Mozilla updating the older version baked into Firefox (which is what most folks are using). Currently, that bug is still outstanding.

Probably the best you can do is to return the pdf as an "attachment", rather than "inline", so the browser prompts them to "open/save" the file. If the user opts to "open" the pdf, it should open with their default program instead. (Adobe Reader is the default for most users).

<cfheader name="Content-Disposition" value="attachment; filename=fileName.pdf">
<cfcontent type="application/pdf" .../>

Update:

like image 61
Leigh Avatar answered Sep 22 '22 20:09

Leigh


This bug was apparently addressed already, as pointed out via the project's github repo: the bug was supposedly fixed during this commit. So if you are still experiencing problems, it either means:

  • You are using an outdated version of the pdf.js library,
  • Or, the problem has been re-introduced into the library.

So to start things off, you will want to make sure that you are using the most up-to-date version of the pdf.js library. If you are still experiencing problems, even with the most up-to-date version, then the problem is still within the embedded pdf document viewer, and there aren't too many things you can do to fix this until the project maintainer's finally fix the problem.

The issue you are experiencing (the reason why you are seeing a "4" where there should be a checkmark, is because the pdf.js library is using a special symbol font to render the checkmarks, but in problematic versions of firefox's embedded pdf-viewer the symbol font isn't rendering the checkmark correctly, so it shows a "4" instead of a checkmark -- because the checkmark symbol they are using in the custom font just so happens to be mapped to the number "4".

Similarly, for the same reasons cited above, if you assign the checkbox to render squares (instead of checks), the letter "N" will appear in the checkbox instead of a square, because the square shape symbol is mapped to the letter "N".

This problem only exists in the embedded pdf document viewer in Firefox but will look perfectly normal when viewed in Adobe Acrobat Reader, or other offline pdf readers (and other browser pdf readers, which is why it looks fine in Chrome and IE), so when users download the form, it will appear like you would expect it to.

Some workarounds / optimizations you could try:

Try one of these, or all of these, they are in no particular order (or guaranteed to work)

  • Don't rely on the built-in pdf.js browser extension in firefox, instead, make your own updated version based on the latest pdf.js source or target another pdf library and use it's browser-agnostic API to render and display your pdfs.

  • Create an HTML form for the user to fill and verify all the information, then render the pdf based on the data supplied by the HTML form, for download only (no previewing in the browser). This will force them to open the pdf in their default pdf viewer where the issue is not present, because, again, the problem you describe only happens in Firefox's embedded pdf viewer and not in other pdf viewers like Adobe Acrobat).

  • Make sure you have the ZapfDingBats Font installed on your server. I haven't confirmed this, but that commit that was supposed to have solved this issue seems to have added support for this font, so it is worth a try to make sure this font is accessible on your ColdFusion server, then try previewing the rendered pdf in Firefox.

  • Detect that the user is accessing your form via Firefox, and if so, warn the users of the issue, but assure them that downloading the form and viewing in their default pdf viewer will work as expected.

  • Convert the page to HTML5 (if you aren't already), then add in an HTML5 shiv (so HTML5 features can be used on older browsers), and a CSS normalizer, and test if the problem persists using these optimal settings. It's worth a shot to make sure that the problem is somehow treated differently under the HTML5 standard, since not everyone is having the same issues as you.

  • Lastly, make sure that your HTML is being rendered as valid markup via your ColdFusion output by using an HTML validator.

Other than that, there isn't a whole lot you can do until the mozilla team updates their embedded pdf viewer. But since the problem is only in the firefox viewer, and not in the pdf itself, it it up to you to decide if this is a deal-breaker or not, and search for alternatives.

Note: PDF.js is built into version 19+ of Firefox.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Update: You can use this pdf (which represents the character mapping of the ZapDingbats symbol font) as a way of testing your browser's interpretation of embedded fonts in the pdf rendered via pdf.js. Note that at the time of this writing, the above pdf does not display the Zapf Dingbats properly in Firefox (via pdf.js), but other browsers render them just fine (notice the "4" next to a20[x2714] in firefox, and the checkmark next to the same entry (a20[x2714]) in Chrome.

ZapfDingbats not rendering in Firefox version 34.0.5 via pdf.js

like image 24
radiovisual Avatar answered Sep 24 '22 20:09

radiovisual