
Research
/Security News
Popular Tinycolor npm Package Compromised in Supply Chain Attack Affecting 40+ Packages
Malicious update to @ctrl/tinycolor on npm is part of a supply-chain attack hitting 40+ packages across maintainers
nodejs-ocr
Advanced tools
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.
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.
Research
/Security News
Malicious update to @ctrl/tinycolor on npm is part of a supply-chain attack hitting 40+ packages across maintainers
Security News
pnpm's new minimumReleaseAge setting delays package updates to prevent supply chain attacks, with other tools like Taze and NCU following suit.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.