
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
docrectifier4nodejs
Advanced tools
The Node.js Document Rectification SDK is a Node binding to Dynamsoft Label Recognizer C++ SDK. It helps developers build Node.js applications for document rectification on Windows and Linux.
Get a 30-day FREE trial license to activate the SDK.
Platform-specific C/C++ compiler
node-gyp
npm i node-gyp -g
Set the LICENSE-KEY
and specify the image-file
in the code below:
const DocRectifier = require('docrectifier4nodejs');
DocRectifier.initLicense('LICENSE-KEY');
var obj = new DocRectifier();
(async function () {
try {
obj.setParameters(DocRectifier.Template.color);
let results = await obj.detectFileAsync('image-file');
let result = results[0];
result = await obj.normalizeFileAsync('image-file', result['x1'], result['y1'], result['x2'], result['y2'], result['x3'], result['y3'], result['x4'], result['y4']);
obj.save('test.png');
} catch (error) {
console.log(error);
}
})();
initLicense(licenseKey)
setParameters(template)
getParameters()
detectFileAsync(imageFile, callback)
detectBufferAsync(imageBuffer, width, height, stride, callback)
normalizeFileAsync(imageFile, x1, y1, x2, y2, x3, y3, x4, y4, callback)
normalizeBufferAsync(imageBuffer, width, height, stride, x1, y1, x2, y2, x3, y3, x4, y4, callback)
save(imageFile)
FAQs
Node.js bindings to Dynamsoft Document Normalizer C/C++ SDK.
The npm package docrectifier4nodejs receives a total of 1 weekly downloads. As such, docrectifier4nodejs popularity was classified as not popular.
We found that docrectifier4nodejs 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
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.