Image Translation API
Translate Image
Recognize and translate the text in an image, directly return the translated image where the text is translated into the specified language, while preserving the original image's layout and style.
POST
https://api.piclaza.com/task/v1/image/translate
Request body
Content-Type: application/json
image_url string required[1]
Image link
image_urls array of string required[1]
List of image link
image_file_b64 string required[1]
Image file content, base64 encoding (format: data:[<mediatype>][;base64],<data>
)
image_name string
Corresponding file name of image_file_b64
source_language string required
Source language. Currently support:
CHS
: Chinese (Simplified)CHT
: Chinese (Traditional)ENG
: EnglishESP
: SpanishJPN
: JapaneseKOR
: Korean
target_language string required
Target language. See Supported languages for more information.
translation_vendor string
The text translation engine, currently supported:
Google
: (Default) Widely used in multiple languages around the worldPapago
: Good Korean translationDeepL
: Available in multiple languages, excellent in slang and dialect translationChatGPT
: Use the best Large Language Model(gpt-4o), with accurate translationAliyun
: Suitable for Chinese translation
qos string
Quality of Service, currently supported:
BestQuality
: (Default) Preference for good translation qualityLowLatency
: Preference for fast translation speed
1 image_url/image_urls/image_file_b64 are three forms of input image parameters, and one of the three parameters should be set
Example
Response body
Content-Type: application/json
code integer
Status code, non-0 indicates an error. See Response status code for more information
message string
Error message
data map
Returned data
results array of Task object
Example
The Task Object
code integer
Status code, non-0 indicates an error. See Response status code for more information
message string
Error message
task_id string
Task id
type string
Task type
Query the results of image translation
POST
https://api.piclaza.com/task/v1/image/translate/result
Parameters
Content-Type: application/json
task_ids string required
List of task ids
verbose boolean
Return detailed OCR data or not, default is false.
Example
Responses
Content-Type: application/json
code integer
Status code, non-0 indicates an error. See Response status code for more information
message string
Error message
data object
Returned data
results array of Image Translatioin Result object
Example
The Image Translation Result Object
code integer
Status code, non-0 indicates an error. See Response status code for more information
message string
Error message
task_id string
Task id
user_id integer
User id
type string
Task type
status string
Task status (ok/running/failed)
original_image string
Original image link
translated_image string
Translated image link
text_removed_image string
Text removed image link
ocr list of Image OCR object
List of recognized text information
The Image OCR Object
Coordinates representation: the upper left corner of the image is (0, 0); the x-axis is from left to right; the y-axis is from top to bottom
id integer
id
source string
Recognized original text
target string
Translated text
ori_bounding_box string
Original text box border
bounding_box string
Translated text box border
font_size integer
Text font size
direction integer
Text writing direction (h: horizontal, v: vertical)
Some languages have a tradition of vertical writing, such as Chinese and Japanese
color string
Text color (RGB)
stroke_color string
Text stroke color (RGB)
line_count integer
Line count of text
angle integer
Rotation angle (clockwise rotation from the positive direction of the x-axis, default 0)
align string
Alignment (left/right/center)