3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# File 'lib/asposeocrjava/OCR/readpartinformationoftext.rb', line 3
def initialize()
data_dir = File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) + '/data/'
ocr_engine = Rjb::import('com.aspose.ocr.OcrEngine').new
ocr_engine.setImage(Rjb::import('com.aspose.ocr.ImageStream').fromFile(data_dir + 'ocr.png'))
if ocr_engine.process()
puts "Text: " + ocr_engine.getText().to_string
text = ocr_engine.getText().getPartsInfo()
i = 0
while i < text.length
symbol = text[i]
puts "isItalic : " + symbol.getItalic().to_s
puts "isUnderline : " + symbol.getUnderline().to_s
puts "isBold : " + symbol.getBold().to_s
puts "Text Color : " + symbol.getTextColor().to_string
puts "Quality : " + symbol.getCharactersQuality().to_s
i +=1
end
end
end
|