Security News
Weekly Downloads Now Available in npm Package Search Results
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
@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.
The npm package @accusoft/document-processing-helper receives a total of 45 weekly downloads. As such, @accusoft/document-processing-helper popularity was classified as not popular.
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
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.
Security News
A Stanford study reveals 9.5% of engineers contribute almost nothing, costing tech $90B annually, with remote work fueling the rise of "ghost engineers."
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.