Sha256: 26d1a67ae7ffd5f573a03fb6f480d294edff5700e7d03af790696d8bbb13d1d6

Contents?: true

Size: 1.52 KB

Versions: 34

Compression:

Stored size: 1.52 KB

Contents

require 'ttfunk/encoding/mac_roman'
require 'ttfunk/encoding/windows_1252'

module TTFunk
  class Table
    class Cmap

      module Format00
        attr_reader :language
        attr_reader :code_map

        # Expects a hash mapping character codes to glyph ids (where the
        # glyph ids are from the original font). Returns a hash including
        # a new map (:charmap) that maps the characters in charmap to a
        # another hash containing both the old (:old) and new (:new) glyph
        # ids. The returned hash also includes a :subtable key, which contains
        # the encoded subtable for the given charmap.
        def self.encode(charmap)
          next_id = 0 
          glyph_indexes = Array.new(256, 0)
          glyph_map = { 0 => 0 }

          new_map = charmap.keys.sort.inject({}) do |map, code|
            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

        def [](code)
          @code_map[code] || 0
        end

        def supported?
          true
        end

        private

          def parse_cmap!
            length, @language = read(4, "nn")
            @code_map = read(256, "C*")
          end
      end

    end
  end
end

Version data entries

34 entries across 34 versions & 10 rubygems

Version Path
ttfunk-1.2.2 lib/ttfunk/table/cmap/format00.rb
ttfunk-1.2.1 lib/ttfunk/table/cmap/format00.rb
ttfunk-1.2.0 lib/ttfunk/table/cmap/format00.rb
ttfunk-1.1.1 lib/ttfunk/table/cmap/format00.rb
ttfunk-1.1.0 lib/ttfunk/table/cmap/format00.rb
ttfunk-1.0.3 lib/ttfunk/table/cmap/format00.rb
ttfunk-1.0.2 lib/ttfunk/table/cmap/format00.rb
ttfunk-1.0.1 lib/ttfunk/table/cmap/format00.rb
davebenvenuti-prawn-0.11.1.pre vendor/ttfunk/lib/ttfunk/table/cmap/format00.rb
piglop-prawn-0.10.2.3 vendor/ttfunk/lib/ttfunk/table/cmap/format00.rb
piglop-prawn-0.10.2.2 vendor/ttfunk/lib/ttfunk/table/cmap/format00.rb
piglop-prawn-0.10.2.1 vendor/ttfunk/lib/ttfunk/table/cmap/format00.rb
glyph_imager-0.1.1 vendor/ttfunk/lib/ttfunk/table/cmap/format00.rb
prawn-0.11.1.pre vendor/ttfunk/lib/ttfunk/table/cmap/format00.rb
goodwill-prawn-edge-0.10.0 vendor/ttfunk/lib/ttfunk/table/cmap/format00.rb
alphasights-prawn-0.10.4 vendor/ttfunk/lib/ttfunk/table/cmap/format00.rb
alphasights-prawn-0.10.3 vendor/ttfunk/lib/ttfunk/table/cmap/format00.rb
alphasights-prawn-0.10.2 vendor/ttfunk/lib/ttfunk/table/cmap/format00.rb
alphasights-prawn-0.10.1 vendor/ttfunk/lib/ttfunk/table/cmap/format00.rb
glyph_imager-0.1.0 vendor/ttfunk/lib/ttfunk/table/cmap/format00.rb