Tagged Questions
4
votes
3answers
307 views
Kerning problems when drawing text character by character
I'm trying to draw strings character by character to add lighting effects to shapes composed of text.
while (i != line.length()) {
c = line.substring(i, i + 1);
cWidth = ...
2
votes
1answer
143 views
OpenType font kerning with itext
I am using itext and ColdFusion (java) to write text strings to a PDF document. I have both trueType and openType fonts that I need to use. Truetype fonts seem to be working correctly, but the kerning ...
2
votes
2answers
908 views
Accessing font kerning information in Java2D
Little background..
I'm in the process of making an OpenGL game using Java and LWJGL. I've written a TextRenderer-class that renders text using cached pages of glyphs. The glyphs itself are rendered ...