Sha256: 91eb551ca2126f38b589f0c6bb8ee31adfd5e318a7c3c7dd93a8258657901d9f

Contents?: true

Size: 1.6 KB

Versions: 2

Compression:

Stored size: 1.6 KB

Contents

# Aspose.OCR Cloud SDK For Ruby
This SDK lets you use [Aspose Cloud OCR APIs](http://www.aspose.com/cloud/ocr-api.aspx) in your Ruby web apps.

## Installing
You can simply install Aspose OCR Cloud SDK with gem:

`gem install aspose_ocr_cloud`

## Usage
APIs of this SDK can be called as follows:

```ruby
require 'aspose_ocr_cloud'

class OCRUsage
  
  include AsposeOCRCloud
  include AsposeStorageCloud
	
  def initialize
    #Get App key and App SID from https://cloud.aspose.com
    AsposeApp.app_key_and_sid("APP_KEY", "APP_SID")
    @ocr_api = OcrApi.new  
  end

  def upload_file(file_name)
    @storage_api = StorageApi.new
    response = @storage_api.put_create(file_name, File.open("data/" << file_name,"r") { |io| io.read } )
  end
  
  def get_recognize_document
    #Recognize image text, language and text region can be selected, default dictionaries can be used for correction.
    file_name = "Sampleocr.bmp"
    upload_file(file_name)
    
    response = @ocr_api.get_recognize_document(file_name)
  end
  
end
```
## Unit Tests
Aspose OCR SDK includes a suite of unit tests within the [test](https://github.com/asposeocr/Aspose_OCR_Cloud/blob/master/SDKs/Aspose.OCR_Cloud_SDK_for_Ruby/test/ocr_tests.rb) subdirectory. These Unit Tests also serves as examples of how to use the Aspose OCR SDK.

## Contact
Your feedback is very important to us. Please email us all your queries and feedback at marketplace@aspose.com.

## License
Aspose OCR SDK is available under the MIT license. See the [LICENSE](https://github.com/asposeocr/Aspose_OCR_Cloud/blob/master/SDKs/Aspose.OCR_Cloud_SDK_for_Ruby/LICENSE) file for more info.

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
aspose_ocr_cloud-1.0.1 README.md
aspose_ocr_cloud-1.0.0 README.md