
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
nodejs-ocr
Advanced tools
A simple and easy to use client to perform OCR using ABBYY Cloud OCR SDK.
A simple and easy to use client to perform OCR using ABBYY Cloud OCR SDK.
Unlike the alternatives, ABBYY's OCR is simple and practical. It's perfect for reliably reading basic text from pictures, documents, cheques, receipts and business cards. Requires no setup. OCR results are dependably consistent - the same input will never yield different results.
Implements the processImage, submitImage, processDocument, processTextField and processFields methods from the OCR SDK API.
$ npm install nodejs-ocr
let AbbyyClient = require('nodejs-ocr');
let client = new AbbyyClient('myAppId', 'myPassword', 'https://cloud.ocrsdk.com'); // Use https here if you'd like
function ocrComplete(err, results) {
if( !err ) {
console.log(results.toString()); // Raw results of completed Task (or a TaskId for submitImage calls)
}
}
let apiParameters = {
language: 'English',
profile: 'textExtraction',
textType: 'typewriter',
exportFormat: 'xml'
// etc...
};
client.processImage(apiParameters, './localFile.png', ocrComplete); // Buffers can also be passed
[parameters]
<Object>
Optional Abbyy API method parameters. Object with string properties.uploadData
<string>
or <Buffer>
Image to be processed by API method.callback(err, results)
<Function>
Callback to return err
s or OCR results
.parameters
<Object>
Abbyy API method parameters. A text field region must be specified.
uploadData
<string>
or <Buffer>
File to be processed by API method.
callback(err, results)
Callback to return err
s or OCR results
.
[parameters]
<Object>
Optional Abbyy API method parameters.
uploadData
<string>
or <Buffer>
File to be uploaded to Abbyy server.
callback(err, results)
<Function>
Callback to return err
s or Task ID string representing uploaded file.
parameters
<Object>
Abbyy API method parameters. Task ID corresponding to a file uploaded via submitImage is required.
callback(err, results)
<Function>
Callback to return err
s or OCR results
.
parameters
<Object>
Abbyy API method parameters. Task ID corresponding to a file uploaded via submitImage is required.
uploadData
<string>
or <Buffer>
XML representing fields to be processed by API method. For more information on the format of this XML see: XML Parameters of Field Recognition.
callback(err, results)
<Function>
Callback to return err
s or OCR results
.
FAQs
A simple and easy to use client to perform OCR using ABBYY Cloud OCR SDK.
The npm package nodejs-ocr receives a total of 32 weekly downloads. As such, nodejs-ocr popularity was classified as not popular.
We found that nodejs-ocr demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.