summaryrefslogtreecommitdiff
path: root/lily
diff options
context:
space:
mode:
authorMasamichi Hosoda <trueroad@trueroad.jp>2016-06-19 21:48:01 +0900
committerMasamichi Hosoda <trueroad@trueroad.jp>2016-06-27 23:45:58 +0900
commit9437884ac32029c7166ab54cb4f727232b7cdc3c (patch)
treec6323b1c02136446a71d6d68104ca807347596cd /lily
parent9b5a8ef057768b72d63e0e87667a953763e05272 (diff)
Issue 4902/1: Add procedure `ly:has-glyph-names?`
This commit adds procedure `ly:has-glyph-names?` to check whether or not a font has glyph names.
Diffstat (limited to 'lily')
-rw-r--r--lily/open-type-font-scheme.cc46
1 files changed, 46 insertions, 0 deletions
diff --git a/lily/open-type-font-scheme.cc b/lily/open-type-font-scheme.cc
index 365ccb1a63..2797ac3e9e 100644
--- a/lily/open-type-font-scheme.cc
+++ b/lily/open-type-font-scheme.cc
@@ -172,3 +172,49 @@ LY_DEFINE (ly_get_font_format, "ly:get-font-format",
return asscm;
}
+
+LY_DEFINE (ly_has_glyph_names_p, "ly:has-glyph-names?",
+ 1, 1, 0, (SCM font_file_name, SCM idx),
+ "Does the font for @var{font_file_name} have glyph names?"
+ " The optional @var{idx} argument is useful for"
+ " TrueType Collections (TTC) and"
+ " OpenType/CFF collections (OTC) only;"
+ " it specifies the font index within the TTC/OTC."
+ " The default value of @var{idx} is@tie{}0.")
+{
+ LY_ASSERT_TYPE (scm_is_string, font_file_name, 1);
+
+ int i = 0;
+ if (!SCM_UNBNDP (idx))
+ {
+ LY_ASSERT_TYPE (scm_is_integer, idx, 2);
+ i = scm_to_int (idx);
+ if (i < 0)
+ {
+ warning (_ ("font index must be non-negative, using index 0"));
+ i = 0;
+ }
+ }
+
+ string file_name = ly_scm2string (font_file_name);
+
+ FT_Face face;
+ /* check whether font index is valid */
+ if (i > 0)
+ {
+ face = open_ft_face (file_name, -1);
+ if (i >= face->num_faces)
+ {
+ warning (_f ("font index %d too large for font `%s', using index 0",
+ i, file_name.c_str ()));
+ i = 0;
+ }
+ FT_Done_Face (face);
+ }
+
+ face = open_ft_face (file_name, i);
+ bool has_glyph_names = FT_HAS_GLYPH_NAMES(face);
+ FT_Done_Face (face);
+
+ return has_glyph_names ? SCM_BOOL_T : SCM_BOOL_F;
+}