Advertisement
Guest User

Untitled

a guest
Jan 4th, 2012
419
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. # Export all font elements to image with FontForge
  2. #
  3. # Usage
  4. #
  5. # 1. Open font with FontForge
  6. # 2. [Edit] - [Select] - [Glyphs Worth Outputting]
  7. # 3. [File] - [Execute Script...]
  8. # 4. Choose [FF] and paste the below script to text area and click [OK]
  9. # 5. That's all. Image files will be saved in the current directory.
  10. #
  11. # Note: Glyphs not having unicode code points may not be exported.
  12. #
  13. # For alternative format or size, see
  14. # <http://fontforge.sourceforge.net/scripting-alpha.html#Export>
  15.  
  16. foreach
  17. Export("U+%U.png", 20)
  18. endloop
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement