4

.ttfRuby や Bash を使用して、ファイルがサポートする文字のリストをプログラムで取得する方法はありますか。後で処理するために、サポートされている文字コードをテキスト ファイルにパイプしようとしています。

(Font Forge は使用しない方がよいでしょう。)

4

1 に答える 1

10

ここttfunkで見つけることができると呼ばれるRubygemを見つけました。

の後にgem install ttfunk、次のスクリプトを実行することですべてのUnicode文字を取得できます。

require 'ttfunk'

file = TTFunk::File.open("path/to/font.ttf")
cmap = file.cmap

chars = {}
unicode_chars = []

cmap.tables.each do |subtable|
  next if !subtable.unicode?
  chars = chars.merge( subtable.code_map )
end

unicode_chars = chars.keys.map{ |dec| dec.to_s(16) }

puts "\n -- Found #{unicode_chars.length} characters in this font \n\n"
p unicode_chars

これは次のようなものを出力します:

- Found 2815 characters in this font 
["20", "21", "22", "23", ... , "fef8", "fef9", "fefa", "fefb", "fefc", "fffc", "ffff"]
于 2012-08-10T16:34:09.203 に答える