Module: TTFunk::Table::Cmap::Format00
- Defined in:
- lib/ttfunk/table/cmap/format00.rb
Overview
Format 0: Byte encoding table.
This module conditionally extends Subtable.
Instance Attribute Summary collapse
-
#code_map ⇒ Array<Integer>
readonly
Code map.
-
#language ⇒ Integer
readonly
Language.
Class Method Summary collapse
-
.encode(charmap) ⇒ Hash
Encode the encoding record to format 0.
Instance Method Summary collapse
-
#[](code) ⇒ Integer
Get glyph ID for character code.
-
#supported? ⇒ true
Is this encoding record format supported?.
Instance Attribute Details
#code_map ⇒ Array<Integer> (readonly)
Code map.
16 17 18 |
# File 'lib/ttfunk/table/cmap/format00.rb', line 16 def code_map @code_map end |
#language ⇒ Integer (readonly)
Language.
12 13 14 |
# File 'lib/ttfunk/table/cmap/format00.rb', line 12 def language @language end |
Class Method Details
.encode(charmap) ⇒ Hash
Encode the encoding record to format 0.
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/ttfunk/table/cmap/format00.rb', line 30 def self.encode(charmap) next_id = 0 glyph_indexes = Array.new(256, 0) glyph_map = { 0 => 0 } new_map = charmap.keys.sort.each_with_object({}) do |code, map| glyph_map[charmap[code]] ||= next_id += 1 map[code] = { old: charmap[code], new: glyph_map[charmap[code]] } glyph_indexes[code] = glyph_map[charmap[code]] map end # format, length, language, indices subtable = [0, 262, 0, *glyph_indexes].pack('nnnC*') { charmap: new_map, subtable: subtable, max_glyph_id: next_id + 1 } end |
Instance Method Details
#[](code) ⇒ Integer
Get glyph ID for character code.
53 54 55 |
# File 'lib/ttfunk/table/cmap/format00.rb', line 53 def [](code) @code_map[code] || 0 end |
#supported? ⇒ true
Is this encoding record format supported?
60 61 62 |
# File 'lib/ttfunk/table/cmap/format00.rb', line 60 def supported? true end |