Skip to main content

Class: ImageToTextTask

Hierarchy

  • CapmonsterClient

    ImageToTextTask

Constructors

constructor

new ImageToTextTask(clientKey): ImageToTextTask

Initialize a new ImageToText task for handling the captchas

Parameters

NameTypeDescription
clientKeystringUnique key of your account

Returns

ImageToTextTask

Overrides

CapmonsterClient.constructor

Defined in

src/tasks/image_to_text.ts:8

Properties

clientKey

clientKey: string

Inherited from

CapmonsterClient.clientKey

Defined in

src/capmonster.ts:6

Methods

convertCookies

convertCookies(cookies): string

Convert cookies to string

Parameters

NameTypeDescription
cookiesObjectYour cookies as a object

Returns

string

Since

v0.4

Inherited from

CapmonsterClient.convertCookies

Defined in

src/capmonster.ts:53


createTask

createTask(image, module?, recognizingThreshold?, _case?, numeric?, math?): Promise<number>

Create task

Parameters

NameType
imagestring
module?string
recognizingThreshold?number
_case?boolean
numeric?number
math?boolean

Returns

Promise<number>

ID of the created task

Deprecated

since v0.4 - use task & createWithTask instead

Defined in

src/tasks/image_to_text.ts:17


createWithTask

createWithTask(task): Promise<number>

Creates a image to text task for solving

Parameters

NameTypeDescription
taskOmit<IImageToTextTaskRequest, "type">task

Returns

Promise<number>

ID of the created task

Since

v0.4

Defined in

src/tasks/image_to_text.ts:54


getBalance

getBalance(): Promise<number>

Returns

Promise<number>

Balance of your account

Inherited from

CapmonsterClient.getBalance

Defined in

src/capmonster.ts:35


getTaskResult

getTaskResult(taskId): Promise<null | IImageToTextTaskResponse>

Get task result

Parameters

NameTypeDescription
taskIdnumberTask id which returns from createWithTask function.

Returns

Promise<null | IImageToTextTaskResponse>

Returns the solution if captcha is solved, otherwise null

Also

see joinTaskResult

Defined in

src/tasks/image_to_text.ts:69


joinTaskResult

joinTaskResult(taskId, timeout?): Promise<IImageToTextTaskResponse>

Get task result. This function is waits until task to be solved.

Parameters

NameTypeDescription
taskIdnumberTask id which returns from createWithTask function.
timeout?number(as seconds) Sets the timeout for the current execution of this function.

Returns

Promise<IImageToTextTaskResponse>

Solution of the task

Throws

CapmonsterError, if task can't be solved in maximum time

Also

see getTaskResult

Defined in

src/tasks/image_to_text.ts:80


prepareImageFromLink(url): Promise<string>

Prepare image with url for task or createWithTask

Parameters

NameTypeDescription
urlstringExternal image link. Example: https://somedomain.com/captcha.png

Returns

Promise<string>

The image as converted to base64 string

Since

v0.4

Defined in

src/tasks/image_to_text.ts:99


prepareImageFromLocal

prepareImageFromLocal(path): Promise<string>

Prepare image from local drive for task or createWithTask

Parameters

NameTypeDescription
pathstringLocal image path. You should resolve the path with path.resolve before passing the parameter..

Returns

Promise<string>

The image as converted to base64 string

Since

v0.4

Defined in

src/tasks/image_to_text.ts:90


setCallbackUrl

setCallbackUrl(url): void

Sets the callback url for all tasks, globally.

Contents are sent by POST request and are same to the contents. of getTaskResult method. The content of the response is not checked and you must accept the request in 2 seconds then the connection will be closed.

Parameters

NameTypeDescription
urlstringWeb address where we will send result of captcha task processing.

Returns

void

Inherited from

CapmonsterClient.setCallbackUrl

Defined in

src/capmonster.ts:73


setTimeout

setTimeout(timeout): void

Sets the timeout for the entire client.

Parameters

NameTypeDescription
timeoutnumberAs seconds, must between 1 and 300.

Returns

void

Inherited from

CapmonsterClient.setTimeout

Defined in

src/capmonster.ts:86


task

task(task): Omit<IImageToTextTaskRequest, "type">

Creates only the task configuration for reuseable tasks.

Parameters

NameTypeDescription
taskOmit<IImageToTextTaskRequest, "type">IImageToTextTaskRequest

Returns

Omit<IImageToTextTaskRequest, "type">

Only the task you created IImageToTextTaskRequest

Since

v0.4

Defined in

src/tasks/image_to_text.ts:46


unsetCallbackUrl

unsetCallbackUrl(): void

Unset the callback url for all tasks, globally.

Returns

void

Inherited from

CapmonsterClient.unsetCallbackUrl

Defined in

src/capmonster.ts:80