Sha256: 22ba041494d12236f1367a9453b64ea89a7eba100c5cc7120dd8190abcc77a4b
Contents?: true
Size: 362 Bytes
Versions: 1
Compression:
Stored size: 362 Bytes
Contents
# frozen_string_literal: true require 'set' require_relative 'code_page' module TTFunk module Subset # Mac Roman subset. It uses code page 10,000 and Mac OS Roman encoding. class MacRoman < CodePage # @param original [TTFunk::File] def initialize(original) super(original, 10_000, Encoding::MACROMAN) end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
ttfunk-1.8.0 | lib/ttfunk/subset/mac_roman.rb |