Aspose.OCR for Java 21.5 - Release Notes
Contents
[
Hide
]
This page contains release notes information for Aspose.OCR for Java 21.5
GPU version: 21.5.0
All Features
Key | Summary | Category |
---|---|---|
OCRJAVA-124 | Add .pdf format support for RecognitionResult | Enhancement |
Enhancements
The next opportunities:
- added ability to save the recognition result in the PDF (Adobe Portable Document) format
Public API and Backwards Incompatible Changes
New API
- modified public enum Format: added value ‘Pdf’
Removed APIs
Will be deprecated
- none
Usage Example
import static java.lang.System.out;
import java.awt.Rectangle;
import java.io.IOException;
import com.aspose.ocr.AsposeOCR;
import com.aspose.ocr.License;
import com.aspose.ocr.RecognitionResult;
import com.aspose.ocr.RecognitionSettings;
import com.aspose.ocr.SaveFormat.Format;
//// for gpu version
// import com.aspose.ocr.gpu.AsposeOCR;
// import com.aspose.ocr.gpu.License;
// import com.aspose.ocr.gpu.RecognitionResult;
// import com.aspose.ocr.gpu.RecognitionSettings;
public class App {
public static void main(String[] args) {
// set license
License.setLicense("Aspose.Total.lic");
boolean resLicense = License.isValid();
out.println("License is :" + resLicense);
// Create api instance
AsposeOCR api = new AsposeOCR();
String img= "D:/img.png";
RecognitionSettings settings = new RecognitionSettings();
RecognitionResult result = api.RecognizePage(file, settings);
System.out.println(result.recognitionText);
result.save("testres.pdf", Format.Pdf);
}
}