Sha256: 65e0229ca7d95fa5aea0bacb0e9395b06bd258a23a73d18ae67814ea0fbfca83
Contents?: true
Size: 1.85 KB
Versions: 3
Compression:
Stored size: 1.85 KB
Contents
# coding: utf-8 # typed: true # frozen_string_literal: true require 'afm' require 'pdf/reader/synchronized_cache' class PDF::Reader module WidthCalculator # Type1 fonts can be one of 14 "built in" standard fonts. In these cases, # the reader is expected to have it's own copy of the font metrics. # see Section 9.6.2.2, PDF 32000-1:2008, pp 256 class BuiltIn BUILTINS = [ :Courier, :"Courier-Bold", :"Courier-BoldOblique", :"Courier-Oblique", :Helvetica, :"Helvetica-Bold", :"Helvetica-BoldOblique", :"Helvetica-Oblique", :Symbol, :"Times-Roman", :"Times-Bold", :"Times-BoldItalic", :"Times-Italic", :ZapfDingbats ] def initialize(font) @font = font @@all_metrics ||= PDF::Reader::SynchronizedCache.new basefont = extract_basefont(font.basefont) metrics_path = File.join(File.dirname(__FILE__), "..","afm","#{basefont}.afm") if File.file?(metrics_path) @metrics = @@all_metrics[metrics_path] ||= AFM::Font.new(metrics_path) else raise ArgumentError, "No built-in metrics for #{font.basefont}" end end def glyph_width(code_point) return 0 if code_point.nil? || code_point < 0 names = @font.encoding.int_to_name(code_point) metrics = names.map { |name| @metrics.char_metrics[name.to_s] }.compact.first if metrics metrics[:wx] else @font.widths[code_point - 1] || 0 end end private def control_character?(code_point) match = @font.encoding.int_to_name(code_point).first.to_s[/\Acontrol..\Z/] match ? true : false end def extract_basefont(font_name) if BUILTINS.include?(font_name) font_name.to_s else "Times-Roman" end end end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
pdf-reader-2.13.0 | lib/pdf/reader/width_calculator/built_in.rb |
pdf-reader-2.12.0 | lib/pdf/reader/width_calculator/built_in.rb |
pdf-reader-2.10.0 | lib/pdf/reader/width_calculator/built_in.rb |