lib/processors/quick_magick.rb in rtesseract-1.2.5 vs lib/processors/quick_magick.rb in rtesseract-1.2.6

- old
+ new

@@ -12,9 +12,10 @@ 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.write tmp_file.path.to_s tmp_file end