After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 131202 - Pango was not recognizing any opentype features in opentype fonts.
Pango was not recognizing any opentype features in opentype fonts.
Status: RESOLVED FIXED
Product: pango
Classification: Platform
Component: general
unspecified
Other Linux
: Normal normal
: ---
Assigned To: pango-maint
pango-maint
Depends on:
Blocks:
 
 
Reported: 2004-01-12 05:24 UTC by Manjunath Sripadarao
Modified: 2004-12-22 21:47 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Patch to get opentype features recognized. (517 bytes, patch)
2004-01-12 05:26 UTC, Manjunath Sripadarao
none Details | Review

Description Manjunath Sripadarao 2004-01-12 05:24:59 UTC
When I save my font in pfaedit as .ttf and then try to see the font in gedit
it honors all the anchor classes and other opentype features. But when I
save the font as .otf (opentype) then it ignores all the opentype features.
This bug has been resolved by Owen Taylor, but it has not made it into the CVS.
Here is the patch, against 1.2.5. This works for 1.3.1 also and the latest
CVS (2004-Jan-06).

--- pango-1.2.5/pango/opentype/pango-ot-info.c.cff      2003-12-11
13:27:19.0000
00000 -0500
+++ pango-1.2.5/pango/opentype/pango-ot-info.c  2003-12-11
13:27:56.000000000 -0
500
@@ -137,7 +137,8 @@
 static gboolean
 is_truetype (FT_Face face)
 {
-  return strcmp (FT_MODULE_CLASS (face->driver)->module_name, "truetype")
== 0;
+  return (strcmp (FT_MODULE_CLASS (face->driver)->module_name, "truetype")
== 0
 ||
+         strcmp (FT_MODULE_CLASS (face->driver)->module_name, "cff") == 0);
 }
 
 typedef struct _GlyphInfo GlyphInfo;
Comment 1 Manjunath Sripadarao 2004-01-12 05:26:24 UTC
Created attachment 23250 [details] [review]
Patch to get opentype features recognized.
Comment 2 Owen Taylor 2004-01-26 19:24:07 UTC
Mon Jan 26 14:20:34 2004  Owen Taylor  <otaylor@redhat.com>
  
        * pango/opentype/pango-ot-info.c (is_truetype): Suport
        CFF fonts as well. (#131202, Manjunath Sripadarao)