
Security News
npm Adopts OIDC for Trusted Publishing in CI/CD Workflows
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
nodejs-ocr
Advanced tools
A simple and easy to use client to perform OCR using ABBYY Cloud OCR SDK.
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', 'http://cloud.ocrsdk.com'); // Use https here if you'd like
function ocrComplete(err, results) {
if( !err ) {
console.log(results); // Raw results of completed Task (or a TaskId for submitImage calls)
}
}
let apiParameters = {
language: 'English',
profile: 'textExtraction',
textType: 'typewriter'
// etc...
}
client.processImage(apiParameters, './localFile.png', ocrComplete); // Buffers can also be passed
processImage([parameters], uploadData, callback)
[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
.
processTextField(parameters, uploadData, callback)
parameters
<Object>
Abbyy API method parameters. A text field region must be specified.
uploadData
<string>
or <Buffer>
Image to be processed by API method.
callback(err, results)
Callback to return err
s or OCR results
.
submitImage([parameters], uploadData, callback)
[parameters]
<Object>
Optional Abbyy API method parameters.
uploadData
<string>
or <Buffer>
File (image, pdf, etc) to be uploaded to Abbyy server.
callback(err, results)
<Function>
Callback to return err
s or Task ID string representing uploaded image.
processDocument(parameters, callback)
parameters
<Object>
Abbyy API method parameters. Task ID is required.
callback(err, results)
<Function>
Callback to return err
s or OCR results
.
processFields(parameters, uploadData, callback)
parameters
<Object>
Abbyy API method parameters. Task ID is required.
uploadData
<string>
or <Buffer>
XML representing fields to be processed by API method.
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 9 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
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.
Research
/Security News
A RubyGems malware campaign used 60 malicious packages posing as automation tools to steal credentials from social media and marketing tool users.
Security News
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.