lib/processors/quick_magick.rb in rtesseract-1.2.6 vs lib/processors/quick_magick.rb in rtesseract-1.3.0
- old
+ new
@@ -12,11 +12,11 @@
def self.image_to_tif(source, x = nil, y = nil, w = nil, h = nil)
tmp_file = Tempfile.new(['', '.tif'])
cat = source.is_a?(Pathname) ? read_with_processor(source.to_s) : source
cat.compress = 'None'
cat.format = 'tif'
- cat.alpha = "off"
- cat.crop("#{w}x#{h}+#{x}+#{y}") if need_crop?( x, y, w, h)
+ cat.alpha = 'off'
+ cat.crop("#{w}x#{h}+#{x}+#{y}") if need_crop?(x, y, w, h)
cat.write tmp_file.path.to_s
tmp_file
end
def self.need_crop?(x = nil, y = nil, w = nil, h = nil)