
Security News
New CNA Scorecard Tool Ranks CVE Data Quality Across the Ecosystem
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
@accusoft/document-processing-helper
Advanced tools
Simple node.js API for document processing, powered by PrizmDoc Server.
Simple node.js helper for document processing, powered by PrizmDoc Server. You can use this helper with either PrizmDoc Cloud or your own self-hosted PrizmDoc Server.
If you don't have your own PrizmDoc Server instance, the easiest way to get started is with PrizmDoc Cloud. Sign up for a free trial account to get an API key at https://cloud.accusoft.com/.
Requires node 8 or higher.
npm install @accusoft/document-processing-helper
const Helper = require('@accusoft/document-processing-helper');
async function main() {
const documentProcessingHelper = new Helper({
prizmDocServerBaseUrl: 'https://api.accusoft.com',
apiKey: 'YOUR_API_KEY'
});
// Initialize a conversion
const output = await documentProcessingHelper.convert({
input: 'input.jpeg',
outputFormat: 'pdf'
});
// Download the output and save the file
await output[0].saveToFile('output.pdf');
}
main();
const Helper = require('@accusoft/document-processing-helper');
async function main() {
const documentProcessingHelper = new Helper({
prizmDocServerBaseUrl: 'https://api.accusoft.com',
apiKey: 'YOUR_API_KEY'
});
// Initialize a conversion
const output = await documentProcessingHelper.convert({
input: 'input.pdf',
outputFormat: 'png'
});
// Save each ouput PNG file
for (let i = 0; i < output.length; i++) {
await output[i].saveToFile('page-' + i + '.png');
}
}
main();
Helper
argumentsObject
(object)
prizmDocServerBaseUrl
(string) Required. Location of your PrizmDoc Server.apiKey
(string) Required for PrizmDoc Cloud. Your PrizmDoc Cloud API key.convert(argumentsObject)
Converts a document from one file type to another.
argumentsObject
(object)
input
(string, buffer, stream) Required. File path, buffer, or stream of the input file to convertoutputFormat
(string) Required. Output format. Must be one of the following values:
"pdf"
"docx"
- Input must be a PDF."tiff"
"jpeg"
- Produces multiple output files, one per page."png"
- Produces multiple output files, one per page.Returns: Output[] - Array of Output instances.
Output
saveToFile(filepath)
Saves the result of a conversion to a file.
filepath
(string) Required. Path, including filename, where the output should be saved.FAQs
Simple node.js API for document processing, powered by PrizmDoc Server.
We found that @accusoft/document-processing-helper 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
The CNA Scorecard ranks CVE issuers by data completeness, revealing major gaps in patch info and software identifiers across thousands of vulnerabilities.
Research
/Security News
Two npm packages masquerading as WhatsApp developer libraries include a kill switch that deletes all files if the phone number isn’t whitelisted.
Research
/Security News
Socket uncovered 11 malicious Go packages using obfuscated loaders to fetch and execute second-stage payloads via C2 domains.