Module: TTFunk::Table::Cmap::Format06
- Defined in:
- lib/ttfunk/table/cmap/format06.rb
Overview
Format 6: Trimmed table mapping.
This module conditionally extends Subtable.
Instance Attribute Summary collapse
-
#code_map ⇒ Hash{Integer => Integer}
readonly
Code map.
-
#language ⇒ Integer
readonly
Language.
Class Method Summary collapse
-
.encode(charmap) ⇒ Hash
Encode the encoding record to format 6.
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 ⇒ Hash{Integer => Integer} (readonly)
Code map.
Source Code
lib/ttfunk/table/cmap/format06.rb, line 16
16 | def code_map |
17 | @code_map
|
18 | end
|
#language ⇒ Integer (readonly)
Language.
Source Code
lib/ttfunk/table/cmap/format06.rb, line 12
12 | def language |
13 | @language
|
14 | end
|
Class Method Details
.encode(charmap) ⇒ Hash
Encode the encoding record to format 6.
Source Code
lib/ttfunk/table/cmap/format06.rb, line 30
30 | def self.encode(charmap) |
31 | next_id = 0 |
32 | glyph_map = { 0 => 0 } |
33 | |
34 | sorted_chars = charmap.keys.sort |
35 | low_char = sorted_chars.first |
36 | high_char = sorted_chars.last |
37 | entry_count = 1 + high_char - low_char |
38 | glyph_indexes = Array.new(entry_count, 0) |
39 | |
40 | new_map = |
41 | charmap.keys.sort.each_with_object({}) do |code, map| |
42 | glyph_map[charmap[code]] ||= next_id += 1 |
43 | map[code] = { old: charmap[code], new: glyph_map[charmap[code]] } |
44 | glyph_indexes[code - low_char] = glyph_map[charmap[code]] |
45 | end
|
46 | |
47 | subtable = [ |
48 | 6, 10 + (entry_count * 2), 0, low_char, entry_count, *glyph_indexes, |
49 | ].pack('n*') |
50 | |
51 | { charmap: new_map, subtable: subtable, max_glyph_id: next_id + 1 } |
52 | end
|
Instance Method Details
#[](code) ⇒ Integer
Get glyph ID for character code.
Source Code
lib/ttfunk/table/cmap/format06.rb, line 58
58 | def [](code) |
59 | @code_map[code] || 0 |
60 | end
|
#supported? ⇒ true
Is this encoding record format supported?
Source Code
lib/ttfunk/table/cmap/format06.rb, line 65
65 | def supported? |
66 | true
|
67 | end
|