Class: HexaPDF::Font::TrueType::Table::CmapSubtable
- Inherits:
-
Object
- Object
- HexaPDF::Font::TrueType::Table::CmapSubtable
- Defined in:
- lib/hexapdf/font/true_type/table/cmap_subtable.rb
Overview
Generic base class for all cmap subtables.
cmap format 8.0 is currently not implemented because use of the format is discouraged in the specification and no font with a format 8.0 cmap subtable was available for testing.
The preferred cmap format is 12.0 because it supports all of Unicode and allows for fast and memory efficient code-to-gid as well as gid-to-code mappings.
See:
Defined Under Namespace
Modules: Format0, Format10, Format12, Format2, Format4, Format6
Constant Summary collapse
- PLATFORM_UNICODE =
The platform identifier for Unicode.
0
- PLATFORM_MICROSOFT =
The platform identifier for Microsoft.
3
Instance Attribute Summary collapse
-
#code_map ⇒ Object
The complete code map.
-
#encoding_id ⇒ Object
The platform-specific encoding identifier.
-
#format ⇒ Object
readonly
The cmap format or
nil
if the subtable wasn’t read from a file. -
#gid_map ⇒ Object
The complete gid map.
-
#language ⇒ Object
The language code.
-
#platform_id ⇒ Object
The platform identifier.
Instance Method Summary collapse
-
#[](code) ⇒ Object
Returns the glyph index for the given character code or
nil
if the character code is not mapped. -
#gid_to_code(gid) ⇒ Object
Returns a character code for the given glyph index or
nil
if the given glyph index does not exist or is not mapped to a character code. -
#initialize(platform_id, encoding_id) ⇒ CmapSubtable
constructor
Creates a new subtable.
-
#inspect ⇒ Object
:nodoc:.
-
#parse(io, offset) ⇒ Object
:call-seq: subtable.parse!(io, offset) => true or false.
-
#unicode? ⇒ Boolean
Returns
true
if this subtable contains a Unicode cmap.
Constructor Details
#initialize(platform_id, encoding_id) ⇒ CmapSubtable
Creates a new subtable.
79 80 81 82 83 84 85 86 87 |
# File 'lib/hexapdf/font/true_type/table/cmap_subtable.rb', line 79 def initialize(platform_id, encoding_id) @platform_id = platform_id @encoding_id = encoding_id @supported = true @code_map = {} @gid_map = {} @format = nil @language = 0 end |
Instance Attribute Details
#code_map ⇒ Object
The complete code map.
73 74 75 |
# File 'lib/hexapdf/font/true_type/table/cmap_subtable.rb', line 73 def code_map @code_map end |
#encoding_id ⇒ Object
The platform-specific encoding identifier.
64 65 66 |
# File 'lib/hexapdf/font/true_type/table/cmap_subtable.rb', line 64 def encoding_id @encoding_id end |
#format ⇒ Object (readonly)
The cmap format or nil
if the subtable wasn’t read from a file.
67 68 69 |
# File 'lib/hexapdf/font/true_type/table/cmap_subtable.rb', line 67 def format @format end |
#gid_map ⇒ Object
The complete gid map.
76 77 78 |
# File 'lib/hexapdf/font/true_type/table/cmap_subtable.rb', line 76 def gid_map @gid_map end |
#language ⇒ Object
The language code.
70 71 72 |
# File 'lib/hexapdf/font/true_type/table/cmap_subtable.rb', line 70 def language @language end |
#platform_id ⇒ Object
The platform identifier.
61 62 63 |
# File 'lib/hexapdf/font/true_type/table/cmap_subtable.rb', line 61 def platform_id @platform_id end |
Instance Method Details
#[](code) ⇒ Object
Returns the glyph index for the given character code or nil
if the character code is not mapped.
97 98 99 |
# File 'lib/hexapdf/font/true_type/table/cmap_subtable.rb', line 97 def [](code) @code_map[code] end |
#gid_to_code(gid) ⇒ Object
Returns a character code for the given glyph index or nil
if the given glyph index does not exist or is not mapped to a character code.
Note that some fonts map multiple character codes to the same glyph (e.g. hyphen and minus), i.e. the code-to-glyph mapping is surjective but not injective! In such a case one of the available character codes is returned.
107 108 109 |
# File 'lib/hexapdf/font/true_type/table/cmap_subtable.rb', line 107 def gid_to_code(gid) @gid_map[gid] end |
#inspect ⇒ Object
:nodoc:
142 143 144 145 |
# File 'lib/hexapdf/font/true_type/table/cmap_subtable.rb', line 142 def inspect #:nodoc: "#<#{self.class.name} (#{platform_id}, #{encoding_id}, #{language}, " \ "#{format.inspect})>" end |
#parse(io, offset) ⇒ Object
:call-seq:
subtable.parse!(io, offset) => true or false
Parses the cmap subtable from the IO at the given offset.
If the subtable format is supported, the information is used to populate this object and true
is returned. Otherwise nothing is done and false
is returned.
118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 |
# File 'lib/hexapdf/font/true_type/table/cmap_subtable.rb', line 118 def parse(io, offset) io.pos = offset @format = io.read(2).unpack('n').first if [8, 10, 12].include?(@format) io.pos += 2 length, @language = io.read(8).unpack('N2') elsif [0, 2, 4, 6].include?(@format) length, @language = io.read(4).unpack('n2') end supported = true @code_map, @gid_map = case @format when 0 then Format0.parse(io, length) when 2 then Format2.parse(io, length) when 4 then Format4.parse(io, length) when 6 then Format6.parse(io, length) when 10 then Format10.parse(io, length) when 12 then Format12.parse(io, length) else supported = false [{}, {}] end supported end |
#unicode? ⇒ Boolean
Returns true
if this subtable contains a Unicode cmap.
90 91 92 93 |
# File 'lib/hexapdf/font/true_type/table/cmap_subtable.rb', line 90 def unicode? (platform_id == PLATFORM_MICROSOFT && (encoding_id == 1 || encoding_id == 10)) || platform_id == PLATFORM_UNICODE end |