I have an application with a font created with the tool to a vlw file. In 2.0b7 it displays the font correctly, in 2.0b8 and 9, the font is rendered blurry, smaller than it should and not in the right position, which is generated by textAscent() and textDescent().
I tried re-creating the font using the tool in different sizes, with and without smoothing. But nothing fixed it. I looked through the changelog and didn't see anything that may be relevant. If I don't loadFont() and let Processing use the default, it displays correctly, but I want to use my font. Image of the difference at
http://i41.tinypic.com/35d0sk1.jpg, no changes in the code or font file, just the software versions are different.
in Setup()
- font = loadFont("SansSerif.plain-16.vlw");
- textFont(font, 12); //font is resized with textSize() throughout the program
1