Class: DragonflyPdf::Processors::SubsetFonts

Inherits:
Object
  • Object
show all
Defined in:
lib/dragonfly_pdf/processors/subset_fonts.rb

Instance Method Summary collapse

Instance Method Details

#call(content, _opts = {}) ⇒ Object

Raises:



4
5
6
7
8
9
10
11
# File 'lib/dragonfly_pdf/processors/subset_fonts.rb', line 4

def call(content, _opts = {})
  raise UnsupportedFormat unless content.ext
  raise UnsupportedFormat unless SUPPORTED_FORMATS.include?(content.ext.downcase)

  content.shell_update(ext: 'pdf') do |old_path, new_path|
    "#{gs_command} -o \"#{new_path}\" -f \"#{old_path}\""
  end
end