Module: Asposeocrjava::LoadImageFromUrl
- Defined in:
- lib/asposeocrjava/OCR/loadimagefromurl.rb
Instance Method Summary collapse
Instance Method Details
#initialize ⇒ Object
3 4 5 6 7 8 9 10 11 12 13 14 15 |
# File 'lib/asposeocrjava/OCR/loadimagefromurl.rb', line 3 def initialize() # Initialize an instance of OcrEngine ocr_engine = Rjb::import('com.aspose.ocr.OcrEngine').new # Set the Image property by loading the image from remote location ocr_engine.setImage(Rjb::import('com.aspose.ocr.ImageStream').fromUrl("http://cdn.aspose.com/tmp/ocr-sample.bmp")) # Process the image if ocr_engine.process() # Display the recognized text puts "Text: " + ocr_engine.getText().to_string end end |