File Format Conversion

to convert

Input Type
png

to

Output Type
tiff

Node.js Quick Start Guide - Convert PNG to TIFF

Below is a functional (copy and paste) code example of how to quickly get started with our conversion technology using our new Node.js module.
npm install @accusoft/document-processing-helper --save

Example of usage [PNG to TIFF]

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.png',
      outputFormat: 'tiff'
    });

    // Download the output and save the file
    await output[0].saveToFile('output.tiff');
  }

main();
Not using Node.js? View our official documentation to use our advanced features with other languages.