Sales Enquiry for Cloud OCR API

I am interested in your OCR API. I have to convert password protected pdf to excel. Please let me know if the same can be done through your tool.

Thanks,
Customer
-----------------------------------
Thanks for your message, you may download "VeryPDF OCR to Any Converter Command Line" or "VeryPDF OCR to Any Converter SDK/COM" from following web page to try,

https://www.verypdf.com/app/ocr-to-any-converter-cmd/try-and-buy.html#buy
https://www.verypdf.com/dl2.php/ocr2any_cmd.zip

after you download it, you can run following command lines to convert your scanned PDF files to excel spreadsheets easily,

ocr2any.exe -ocr2 C:\in.pdf C:\text.pdf
ocr2any.exe -ocr2 C:\in.tif C:\out.pdf
ocr2any.exe -ocr2 C:\in.png C:\out.pdf
ocr2any.exe -ocr2 C:\in.jpg C:\out.pdf
ocr2any.exe -ocr2 C:\in.tif C:\out.doc
ocr2any.exe -ocr2 C:\in.tif C:\out.rtf
ocr2any.exe -ocr2 C:\in.tif C:\out.txt
ocr2any.exe -ocr2 C:\in.tif C:\out.xls

VeryPDF
-----------------------------------
I am looking for an API solution for this. I don't want to install any software and play with command line. Could you please let me know if this is possible.

Customer
-----------------------------------
Thanks for your message, "VeryPDF OCR to Any Converter SDK/COM" is the API, you may download and purchase it from following web page,

https://www.verypdf.com/app/ocr-to-any-converter-cmd/try-and-buy.html#buysdk
https://www.verypdf.com/dl2.php/ocr2any_sdk.zip

after you purchase the Developer License, you can integrate it into your software, so you needn't install any software and play with the command line, we hope this solution will work fine to you.

VeryPDF
-----------------------------------
Hello ,

I think you are not getting me. I need a cloud API for this. As you are providing here :

https://www.verypdf.com/online/cloud-api/index.html

I Cannot install a development kit to my software. Could you please connect me to the technical team for more understanding.

thanks,
Customer
-----------------------------------
Thanks for your message, please refer to VeryPDF OCR Cloud API from following web pages,

https://www.verypdf.com/wordpress/201308/verypdf-cloud-api-platform-verypdf-ocr-cloud-api-online-ocr-engine-to-recognize-scanned-pdf-and-image-files-to-editable-document-formats-37980.html

https://www.verypdf.com/wordpress/201407/how-to-use-ocr-cloud-api-to-extract-text-positions-or-coordinates-from-tiff-image-files-40806.html

For example, you can use following sample code to OCR an image area inside a rectangle,

We have implemented "Extract text from image rectangles" today, we have added a "rectangle" parameter to OCR characters in a rectangle on image, you can use it like below,

http://online.verypdf.com/api/?apikey=XXXXXXXXXXXXXXXX
&app=ocr
&infile=https://dl.dropboxusercontent.com/u/5570462/49AD37032CCC2C0_newfilename10.tif
&format=1
&dumpwordpos=1
&lang=swe
&rectangle=200×1674+822+379

the meaning of "200×1674+822+379" is,

200 is width,
1674 is height,
822 is left position,
379 is top position,

You should better use urlencode() function to encodes string when you call this URL from PHP code, e.g.,

<?php

function get_data($url)
{
$ch = curl_init();
$timeout = 5;
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
$strURL = 'http://online.verypdf.com/api/?';
$strURL .= 'apikey=XXXXXXXXXXXXXXXX&app=ocr&infile=';
$strURL .= 'https://dl.dropboxusercontent.com/u/5570462/test.tif';
$strURL .= '&format=1&dumpwordpos=1&lang=swe';
$strURL .= '&rectangle=' . urlencode('200x1674+822+379');
$returned_content = get_data($strURL);
echo $returned_content;
?>

You can use "rectangle" option to get characters from a special rectangle on image file easily.

If you encounter any problem with VeryPDF OCR Cloud API, please feel free to let us know, we will assist you asap.

VeryPDF

VN:F [1.9.20_1166]
Rating: 0.0/10 (0 votes cast)
VN:F [1.9.20_1166]
Rating: 0 (from 0 votes)

Related Posts

Leave a Reply

Your email address will not be published. Required fields are marked *


Verify Code   If you cannot see the CheckCode image,please refresh the page again!