I have a java program for converting svg to pdf. In that svg file I have given Myriad Pro Light as the style, after converting to pdf the font is coming something else. Can anyone suggest me how to configure the font style programatically.
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.
|
|
Batik rely on AWT fonts for rendering SVG text.If the font is not found on the system or is not registered you'll end up with a default "sans serif" font. You have to make sure the "Myriad pro light" font is installed on your system and that it has the exact same family name as the one referenced in your SVG file (look at the font-family attributes) ; correcting it in the SVG file if needed. If installing the font system-wide is not an option, you can register it at runtime prior to creating your SVGDocument instance using something like this
|
|||||||||||
|