Sha256: 06f65d2f1cab65256b2e1a34200a4498b96592403e2b7a111bb4896a4b3f9e38

Contents?: true

Size: 778 Bytes

Versions: 1

Compression:

Stored size: 778 Bytes

Contents

module Asposeocrjava
  module IgnoreNonTextualBlocks
    def initialize()
        data_dir = File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) + '/data/'
                
        # Initialize an instance of OcrEngine
        ocr_engine = Rjb::import('com.aspose.ocr.OcrEngine').new

        # Set the Image property by loading the image from file path location
        ocr_engine.setImage(Rjb::import('com.aspose.ocr.ImageStream').fromFile(data_dir + 'ocr.png'))

        # Set the RemoveNonText to true
        ocr_engine.getConfig().setRemoveNonText(true)

        # Process the image
        if ocr_engine.process()
            # Display the result
            puts "Text: " + ocr_engine.getText().to_string
        end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
asposeocrjava-0.0.1 lib/asposeocrjava/OCR/ignorenontextualblocks.rb