How can I get glyphs' names beyond 0x10000 in FF?
WAY KYI
Posts: 130
I want to print all graphs' names into a file in FF. Currently, build-in function excludes the names beyond 0x10000. Can I do that with FF scripting? Thanks
Tagged:
0
Comments
-
You can print glyphs names with simple python script:n=fontforge.activeFont();
temp="";
for i in n:
temp+=i;
temp+=" ";
print temp;
but those glyphs must exist in the font (on image not red cross on font preview)In my example below only 2 glyphs exist in font
1 -
Thank for the quick reply. The script runs ok, but did not see the screen printout. Your printout shown only code numbers. Is this because you did not named them? Can I print them out to a file? Thanks0
-
WAY KYI said:.... Your printout shown only code numbers...WAY KYI said:..but did not see the screen printout.WAY KYI said:Can I print them out to a file?import os;
n=fontforge.activeFont();
temp="";
for i in n:
temp+=i;
temp+=" ";
file_name='glyph_names';
if (os.path.isfile(file_name)):
os.remove(file_name);
file=open(file_name,'a');
file.write(temp);
file.close();
1 -
Thanks you very much. I think my system is not set up to run python script. So, let me try with FF equivalent scripting to see it works. I will update you later. Thanks0
-
I got it working with FF scripting. Thanks a lot. See the file here. But there are two things I need to fix. I want integer number in Hex number 0x10000 and also, I want to print each Code Number & Name in new line. I could not figure it out and any help would be very much appreciated. Thanks0
Categories
- All Categories
- 43 Introductions
- 3.7K Typeface Design
- 806 Font Technology
- 1.1K Technique and Theory
- 622 Type Business
- 446 Type Design Critiques
- 543 Type Design Software
- 30 Punchcutting
- 137 Lettering and Calligraphy
- 84 Technique and Theory
- 53 Lettering Critiques
- 489 Typography
- 304 History of Typography
- 115 Education
- 70 Resources
- 500 Announcements
- 80 Events
- 105 Job Postings
- 149 Type Releases
- 165 Miscellaneous News
- 271 About TypeDrawers
- 53 TypeDrawers Announcements
- 117 Suggestions and Bug Reports