Chuyển đổi hình ảnh, PDF sang Searchable PDF

Thử nghiệm nhanh API:Run in Postman

1. Chuyển đổi hình ảnh, PDF sang Searchable PDF với đầu vào URL

API:

MethodURL
GEThttps://demo.computervision.com.vn/api/v2/ocr/document/img_to_pdf

Params:

KeyValueMô tả
imghttps://example.com/image.pngURL của ảnh hoặc pdf
format_typeurlLoại data truyền vào, nhận giá trị: url, file, base64

Demo Python:

import requests
api_key = "YOUR_API_KEY"
api_secret = "YOUR_API_SECRET"
image_url = 'https://example.com/image.png'
response = requests.get(
"https://demo.computervision.com.vn/api/v2/ocr/document/img_to_pdf?img=%s&format_type=url"
% image_url,
auth=(api_key, api_secret))
print(response.json())

2. Chuyển đổi hình ảnh, PDF sang Searchable PDF với đầu vào file

API:

MethodURLcontent-type
POSThttps://demo.computervision.com.vn/api/v2/ocr/document/img_to_pdfmultipart/form-data

Params:

KeyValueMô tả
format_typefileLoại data truyền vào, nhận giá trị: url, file, base64

Body:

KeyTypeValueMô tả
imgfileexample.jpgFile ảnh hoặc pdf cần chuyển đổi

Demo Python:

import requests
api_key = "YOUR_API_KEY"
api_secret = "YOUR_API_SECRET"
image_path = '/path/to/your/image.jpg'
response = requests.post(
"https://demo.computervision.com.vn/api/v2/ocr/document/img_to_pdf?format_type=file",
auth=(api_key, api_secret),
files={'img': open(image_path, 'rb')})
print(response.json())

3. Chuyển đổi hình ảnh, PDF sang Searchable PDF với đầu vào JSON

API:

MethodURLcontent-type
POSThttps://demo.computervision.com.vn/api/v2/ocr/document/img_to_pdfapplication/json

Params:

KeyValueMô tả
format_typebase64Loại data truyền vào, nhận giá trị: url, file, base64

Body:

{
"img": "iVBORw0KGgoAAAANSU..." // string base64 của ảnh hoặc pdf cần chuyển đổi
}

Demo Python:

import base64
import io
import requests
from PIL import Image
def get_byte_img(img):
img_byte_arr = io.BytesIO()
img.save(img_byte_arr, format='PNG')
encoded_img = base64.encodebytes(img_byte_arr.getvalue()).decode('ascii')
return encoded_img
api_key = "YOUR_API_KEY"
api_secret = "YOUR_API_SECRET"
img_name = "path_img"
encode_cmt = get_byte_img(Image.open(img_name))
response = requests.post(
"https://demo.computervision.com.vn/api/v2/ocr/document/img_to_pdf?format_type=base64",
auth=(api_key, api_secret),
json={'img' : encode_cmt})
print(response.json())

4. Thông tin trả về

Thông tin trả về là một file Searchable PDF

Bảng mã lỗi:

Mã lỗiMessageMô tả
0SuccessThành công
1Incorrect image formatẢnh bị lỗi
2Url is unavailableLink ảnh bị lỗi
3The photo does not contain contentẢnh không chứa nội dung
4Incorrect api_key or api_secretapi_key hoặc api_secret sai
5Out of requestsHết số lượng requests hữu dụng
6Error when processing the requestLỗi khi xử lý request