1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320
|
# coding: utf-8
# typed: strict
# frozen_string_literal: true
################################################################################
#
# Copyright (C) 2008 James Healy (jimmy@deefa.com)
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
#
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
# LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
# WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
################################################################################
require 'pdf/reader/width_calculator'
class PDF::Reader
# Represents a single font PDF object and provides some useful methods
# for extracting info. Mainly used for converting text to UTF-8.
#
class Font
#: type widthCalculator = (
#| PDF::Reader::WidthCalculator::TypeZero |
#| PDF::Reader::WidthCalculator::BuiltIn |
#| PDF::Reader::WidthCalculator::TypeOneOrThree |
#| PDF::Reader::WidthCalculator::TrueType |
#| PDF::Reader::WidthCalculator::Composite
#| )
#: Symbol?
attr_accessor :subtype
#: PDF::Reader::Encoding
attr_accessor :encoding
#: Array[PDF::Reader::Font]
attr_accessor :descendantfonts
#: PDF::Reader::CMap | nil
attr_accessor :tounicode
#: Array[Numeric]
attr_reader :widths
#: Integer?
attr_reader :first_char
#: Integer?
attr_reader :last_char
#: Symbol?
attr_reader :basefont
#: PDF::Reader::FontDescriptor?
attr_reader :font_descriptor
#: Array[Numeric]
attr_reader :cid_widths
#: Numeric
attr_reader :cid_default_width
#: (PDF::Reader::ObjectHash, Hash[Symbol, untyped]) -> void
def initialize(ohash, obj)
@ohash = ohash
@tounicode = nil #: PDF::Reader::CMap | nil
@descendantfonts = [] #: Array[PDF::Reader::Font]
@widths = [] #: Array[Numeric]
@first_char = nil #: Integer?
@last_char = nil #: Integer?
@basefont = nil #: Symbol?
@font_descriptor = nil #: PDF::Reader::FontDescriptor?
@cid_widths = [] #: Array[Numeric]
@cid_default_width = 0 #: Numeric
@encoding = PDF::Reader::Encoding.new(:StandardEncoding) #: PDF::Reader::Encoding
@cached_widths = {} #: Hash[Integer, Numeric]
@font_matrix = nil #: Array[Numeric] | nil
extract_base_info(obj)
extract_type3_info(obj)
extract_descriptor(obj)
extract_descendants(obj)
@width_calc = build_width_calculator #: widthCalculator
end
#: (Integer | String | Array[Integer | String]) -> String
def to_utf8(params)
if @tounicode
to_utf8_via_cmap(params, @tounicode)
else
to_utf8_via_encoding(params)
end
end
#: (String) -> (Array[Integer | Float | String | nil] | nil)
def unpack(data)
data.unpack(encoding.unpack)
end
# looks up the specified codepoint and returns a value that is in (pdf)
# glyph space, which is 1000 glyph units = 1 text space unit
#: (Integer | String) -> Numeric
def glyph_width(code_point)
if code_point.is_a?(String)
code_point = unpack_string_to_array_of_ints(code_point, encoding.unpack).first
raise MalformedPDFError, "code point missing" if code_point.nil?
end
@cached_widths[code_point] ||= @width_calc.glyph_width(code_point)
end
# In most cases glyph width is converted into text space with a simple divide by 1000.
#
# However, Type3 fonts provide their own FontMatrix that's used for the transformation.
#
#: (Integer | String) -> Numeric
def glyph_width_in_text_space(code_point)
glyph_width_in_glyph_space = glyph_width(code_point)
if @subtype == :Type3
x1, _y1 = font_matrix_transform(0,0)
x2, _y2 = font_matrix_transform(glyph_width_in_glyph_space, 0)
(x2 - x1).abs.round(2)
else
glyph_width_in_glyph_space / 1000.0
end
end
private
# Only valid for Type3 fonts
#: (Numeric, Numeric) -> [Numeric, Numeric]
def font_matrix_transform(x, y)
return x, y if @font_matrix.nil?
matrix = TransformationMatrix.new(
@font_matrix[0] || 0, @font_matrix[1] || 0,
@font_matrix[2] || 0, @font_matrix[3] || 0,
@font_matrix[4] || 0, @font_matrix[5] || 0,
)
if x == 0 && y == 0
[matrix.e, matrix.f]
else
[
(matrix.a * x) + (matrix.c * y) + (matrix.e),
(matrix.b * x) + (matrix.d * y) + (matrix.f)
]
end
end
#: (Symbol | String | nil) -> PDF::Reader::Encoding
def default_encoding(font_name)
case font_name.to_s
when "Symbol" then
PDF::Reader::Encoding.new(:SymbolEncoding)
when "ZapfDingbats" then
PDF::Reader::Encoding.new(:ZapfDingbatsEncoding)
else
PDF::Reader::Encoding.new(:StandardEncoding)
end
end
#: () -> widthCalculator
def build_width_calculator
if @subtype == :Type0
PDF::Reader::WidthCalculator::TypeZero.new(self)
elsif @subtype == :Type1
if @font_descriptor.nil?
PDF::Reader::WidthCalculator::BuiltIn.new(self)
else
PDF::Reader::WidthCalculator::TypeOneOrThree .new(self)
end
elsif @subtype == :Type3
PDF::Reader::WidthCalculator::TypeOneOrThree.new(self)
elsif @subtype == :TrueType
if @font_descriptor
PDF::Reader::WidthCalculator::TrueType.new(self)
else
# A TrueType font that isn't embedded. Most readers look for a version on the
# local system and fallback to a substitute. For now, we go straight to a substitute
PDF::Reader::WidthCalculator::BuiltIn.new(self)
end
elsif @subtype == :CIDFontType0 || @subtype == :CIDFontType2
PDF::Reader::WidthCalculator::Composite.new(self)
else
PDF::Reader::WidthCalculator::TypeOneOrThree.new(self)
end
end
#: (Hash[Symbol, untyped]) -> PDF::Reader::Encoding
def build_encoding(obj)
if obj[:Encoding].is_a?(Symbol)
# one of the standard encodings, referenced by name
# TODO pass in a standard shape, always a Hash
PDF::Reader::Encoding.new(obj[:Encoding])
elsif obj[:Encoding].is_a?(Hash) || obj[:Encoding].is_a?(PDF::Reader::Stream)
PDF::Reader::Encoding.new(obj[:Encoding])
elsif obj[:Encoding].nil?
default_encoding(@basefont)
else
raise MalformedPDFError, "Unexpected type for Encoding (#{obj[:Encoding].class})"
end
end
#: (Hash[Symbol, untyped]) -> void
def extract_base_info(obj)
@subtype = @ohash.deref_name(obj[:Subtype])
@basefont = @ohash.deref_name(obj[:BaseFont])
@encoding = build_encoding(obj)
@widths = @ohash.deref_array_of_numbers(obj[:Widths]) || []
@first_char = @ohash.deref_integer(obj[:FirstChar])
@last_char = @ohash.deref_integer(obj[:LastChar])
# CID Fonts are not required to have a W or DW entry, if they don't exist,
# the default cid width = 1000, see Section 9.7.4.1 PDF 32000-1:2008 pp 269
@cid_widths = @ohash.deref_array(obj[:W]) || []
@cid_default_width = @ohash.deref_number(obj[:DW]) || 1000
if obj[:ToUnicode]
# ToUnicode is optional for Type1 and Type3
stream = @ohash.deref_stream(obj[:ToUnicode])
if stream
@tounicode = PDF::Reader::CMap.new(stream.unfiltered_data)
end
end
end
#: (Hash[Symbol, untyped]) -> void
def extract_type3_info(obj)
if @subtype == :Type3
@font_matrix = @ohash.deref_array_of_numbers(obj[:FontMatrix]) || [
0.001, 0, 0, 0.001, 0, 0
]
end
end
#: (Hash[Symbol, untyped]) -> void
def extract_descriptor(obj)
if obj[:FontDescriptor]
# create a font descriptor object if we can, in other words, unless this is
# a CID Font
fd = @ohash.deref_hash(obj[:FontDescriptor]) || {}
@font_descriptor = PDF::Reader::FontDescriptor.new(@ohash, fd)
else
@font_descriptor = nil
end
end
#: (Hash[Symbol, untyped]) -> void
def extract_descendants(obj)
# per PDF 32000-1:2008 pp. 280 :DescendentFonts is:
# A one-element array specifying the CIDFont dictionary that is the
# descendant of this Type 0 font.
if obj[:DescendantFonts]
descendants = @ohash.deref_array(obj[:DescendantFonts]) || []
@descendantfonts = descendants.map { |desc|
PDF::Reader::Font.new(@ohash, @ohash.deref_hash(desc) || {})
}
else
@descendantfonts = []
end
end
#: (Integer | String | Array[Integer | String], PDF::Reader::CMap) -> String
def to_utf8_via_cmap(params, cmap)
case params
when Integer
[
cmap.decode(params)
].flatten.pack("U*")
when String
unpack_string_to_array_of_ints(params, encoding.unpack).map { |code_point|
cmap.decode(code_point)
}.flatten.pack("U*")
when Array
params.collect { |param| to_utf8_via_cmap(param, cmap) }.join("")
end
end
#: (Integer | String | Array[Integer | String]) -> String
def to_utf8_via_encoding(params)
if encoding.kind_of?(String)
raise UnsupportedFeatureError, "font encoding '#{encoding}' currently unsupported"
end
case params
when Integer
encoding.int_to_utf8_string(params)
when String
encoding.to_utf8(params)
when Array
params.collect { |param| to_utf8_via_encoding(param) }.join("")
end
end
#: (String, String) -> Array[Integer]
def unpack_string_to_array_of_ints(unpack_me, unpack_arg)
unpack_me.unpack(unpack_arg).map { |code_point|
code_point = TypeCheck.cast_to_int!(code_point)
}
end
end
end
|