[poppler] poppler/splash: SplashFTFont.cc,1.1.1.1,1.2

Jeff Muizelaar jrmuizel at freedesktop.org
Sun May 1 17:44:28 PDT 2005


Update of /cvs/poppler/poppler/splash
In directory gabe:/tmp/cvs-serv32585/splash

Modified Files:
	SplashFTFont.cc 
Log Message:
2005-05-01  Jeff Muizelaar  <jeff at infidigm.net>

	* splash/SplashFTFont.cc (SplashFTFont::getGlyphPath):
	Use FT_LOAD_NO_BITMAP to make sure we get outlines loaded instead
	of bitmaps for use in FT_Outline_Decompose.

	Patch from Albert Astals Cid.


Index: SplashFTFont.cc
===================================================================
RCS file: /cvs/poppler/poppler/splash/SplashFTFont.cc,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- SplashFTFont.cc	3 Mar 2005 19:45:59 -0000	1.1.1.1
+++ SplashFTFont.cc	2 May 2005 00:44:26 -0000	1.2
@@ -220,7 +220,7 @@
   } else {
     gid = (FT_UInt)c;
   }
-  if (FT_Load_Glyph(ff->face, gid, FT_LOAD_DEFAULT)) {
+  if (FT_Load_Glyph(ff->face, gid, FT_LOAD_NO_BITMAP)) {
     return NULL;
   }
   if (FT_Get_Glyph(slot, &glyph)) {



More information about the poppler mailing list