How do you generate ligatures in PHP tcpdf?
|
feedback
|
|
tcpdf either uses FreeType to rasterize the fonts, or just embeds them into the PDF and they are rasterized in the viewer. Ligatures are actually defined in the fonts. If you are using a Type1 font and specify a ligature character in your string, Freetype will rasterize it. Automatic substitution of "fi", "ff" etc. for ligatures as in OpenType is not supported by FreeType, so I am guessing it won't be supported by tcpdf either. See http://www.adobe.com/devnet/opentype/archives/glyph.html for glyph names etc. | |||||
feedback
|