The problem goes away if I force the auto-hinter on.
The following patch to ftview.c can be used to demonstrate the problem:
diff --git a/src/ftcommon.c b/src/ftcommon.c
index 3ca5bc3..852346b 100644
--- a/src/ftcommon.c
+++ b/src/ftcommon.c
@@ -555,7 +555,7 @@
if ( char_size > 0xFFFFF )
char_size = 0xFFFFF;
- handle->scaler.width = (FT_UInt) char_size;
+ handle->scaler.width = (FT_UInt) char_size * 4;
handle->scaler.height = (FT_UInt) char_size;
handle->scaler.pixel = 0;
handle->scaler.x_res = (FT_UInt) resolution;
Run ftview like this:
./objs/ftview -m R 64 DejaVuSans.ttf
I use the latest DefaVu version 2.33 on a Fedora 16 x86_64 with gcc 4.6.2.
/Tobias
<<attachment: bug.png>>
_______________________________________________ Freetype-devel mailing list [email protected] https://lists.nongnu.org/mailman/listinfo/freetype-devel
