lib/rtesseract/pdf.rb in rtesseract-3.1.2 vs lib/rtesseract/pdf.rb in rtesseract-3.1.3
- old
+ new
@@ -3,10 +3,10 @@
class RTesseract
module Pdf
extend Base
def self.run(source, errors, options)
- options.tessedit_create_pdf = 1
+ options = options.merge({ tessedit_create_pdf: 1 })
RTesseract::Command.new(source, temp_file_path, errors, options).run do |output_path|
File.open("#{output_path}.pdf", 'r')
end
end