Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a (unix) pdf viewer that supports font substitution? This option may be useful for disabled (e.g. dyslexic) people.

For example, is there a way to render a "display list" like the following one produced by mupdf, and modify/substitute the fonts?

<?xml version="1.0"?>
<document name="foobar.pdf">
<page number="1">
<fill_text font="RBRYXK+CMR17" wmode="0" colorspace="DeviceGray" color="0" matrix="1 0 0 1 0 0" trm="17.2154 0 0 17.2154" >
<g ucs="S" gid="10" x="128.335" y="664.286" />
<g ucs="t" gid="24" x="137.115" y="664.286" />
<g ucs="r" gid="22" x="143.209" y="664.286" />
<g ucs="u" gid="25" x="149.303" y="664.286" />

I understand that the MMZAAW+ syntax is an Adobe convention for naming font subsets. Thus this is a specific subset of CMR10, and the FontDescriptor has some useful info (section 5.7 of the PDF spec). But many of these are optional (even if strongly recommended). FontFamily is one, but less common are FontWeight and FontStretch. ItallicAngle is usually present, and StemV StemH can be used to infer weight. PDF also has a "Widths" array that is required and useful in font substiution. (This is taken from #ghostript irc channel of mupdf; the display list is generated by the mupdf viewer). Is there a library which can convert these font descriptions to their parameters like FontWeight, FontStretch, ItallicAngle, StemV Stem H ? Which can produce bounding boxes on these data ?

share|improve this question

1 Answer

Use PDF-a as an default PDF file type. The users PDF viewer can then render selected fonts and font-sizes as specified by the user.

http://en.wikipedia.org/wiki/PDF/A

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.