2009-05-22 13:36:08 +00:00
|
|
|
class Filter
|
|
|
|
@config = {}
|
|
|
|
@cleanup = []
|
|
|
|
|
|
|
|
attr_accessor :config, :cleanup
|
2010-01-05 03:55:50 +00:00
|
|
|
|
2009-05-22 13:36:08 +00:00
|
|
|
def initialize
|
|
|
|
@config = {}
|
|
|
|
@cleanup = []
|
|
|
|
end
|
|
|
|
|
|
|
|
def cleanup
|
2010-01-05 03:55:50 +00:00
|
|
|
@cleanup.each do |f|
|
2009-05-22 13:36:08 +00:00
|
|
|
if File.exists? f; File.unlink(f); end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def recalc_pixels
|
|
|
|
if @config['print']
|
|
|
|
if !@config['dpi']; raise "DPI not defined"; end
|
|
|
|
if (@config['dpi'].to_i.to_s) != @config['dpi'].to_s; raise "DPI not integer"; end
|
|
|
|
if @config['width_inches'] && (@config['width_inches'].to_f != 0)
|
|
|
|
@config['width'] = (@config['width_inches'].to_f * @config['dpi'].to_f).to_i
|
|
|
|
else
|
|
|
|
@config.delete('width')
|
|
|
|
end
|
|
|
|
if @config['height_inches'] && (@config['height_inches'].to_f != 0)
|
|
|
|
@config['height'] = (@config['height_inches'].to_f * @config['dpi'].to_f).to_i
|
|
|
|
else
|
|
|
|
@config.delete('height')
|
2010-01-05 03:55:50 +00:00
|
|
|
end
|
|
|
|
|
2009-05-22 13:36:08 +00:00
|
|
|
if (!@config['width'] && !@config['height'])
|
|
|
|
raise "No dimensions defined!"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Set the config
|
|
|
|
#
|
|
|
|
def config=(c)
|
|
|
|
@config = c
|
2010-01-05 03:55:50 +00:00
|
|
|
|
2009-05-22 13:36:08 +00:00
|
|
|
recalc_pixels
|
|
|
|
end
|
|
|
|
|
|
|
|
def convert(command, verbose = false)
|
2009-09-23 22:22:13 +00:00
|
|
|
if verbose
|
|
|
|
puts "convert " + (verbose ? "-verbose " : "" ) + [ command ].flatten.join(" ")
|
|
|
|
end
|
2009-05-22 13:36:08 +00:00
|
|
|
system("convert " + (verbose ? "-verbose " : "" ) + [ command ].flatten.join(" "))
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Get the dimensions of a file
|
|
|
|
#
|
|
|
|
def get_dimensions(input)
|
|
|
|
dimensions = nil
|
|
|
|
IO.popen("identify -format '%w,%h' \"#{input}\"") do |fh|
|
|
|
|
dimensions = fh.readlines.first.split(",").collect { |d| d.to_i }
|
|
|
|
end
|
|
|
|
dimensions
|
|
|
|
end
|
|
|
|
end
|