我对 ruby 1.9.3 有同样的问题。我已将其范围缩小到至少在 pdf 中包含商标 R。我把它归结为pdf gem中的这段代码:
def glyph_width(code_point)
return 0 if code_point.nil? || code_point <= 0
m = @metrics.char_metrics_by_code[code_point]
if m.nil?
names = @font.encoding.int_to_name(code_point)
m = names.map { |name|
@metrics.char_metrics[name.to_s]
}.compact.first
end
if m
m[:wx]
elsif @font.widths[code_point - 1]
@font.widths[code_point - 1]
else
raise ArgumentError, "Unknown glyph width for #{code_point} #{@font.basefont}"
end
end
我把它改成了这个,它只会忽略它无法识别的字符。我不确定 ruby 2.0 是否解决了这个问题。
def glyph_width(code_point)
return 0 if code_point.nil? || code_point <= 0
m = @metrics.char_metrics_by_code[code_point]
if m.nil?
names = @font.encoding.int_to_name(code_point)
m = names.map { |name|
@metrics.char_metrics[name.to_s]
}.compact.first
end
if m
m[:wx]
elsif @font.widths[code_point - 1]
@font.widths[code_point - 1]
elsif(m == nil)
return 0
else
p(m)
raise ArgumentError, "Unknown glyph width for #{code_point} #{@font.basefont}"
end
end
更好的解决方案可能是在 char_metrics_by_code 中捕获在这种情况下为 9 的 code_point