HTML JPG PDF XML DOCX
  Product Family
PDF

Convert PDF to GIF via Cloud Node.js SDK

Export PDF documents to multiple formats including GIF with Aspose.PDF Cloud Node.js SDK

Get Started

How to Convert PDF to GIF Using Node.js SDK

To convert PDF to GIF, we’ll use Aspose.PDF Cloud Node.js SDK This Cloud SDK SDK assists Node.js programmers in developing cloud-based PDF creator, annotator, editor, and converter apps using Node.js programming language via Aspose.PDF REST API. Open NPM package manager, search for Aspose.PDF Cloud, and install. You may also use the following command from the Package Manager Console.

Package Manager Console Command


     
    npm install asposepdfcloud --save
     
     

Steps to Convert PDF to GIF via Node.js

Aspose.PDF Cloud Node.js developers can easily load & convert PDF files to GIF in just a few lines of code.

  1. Load your Application Secret and Key from the JSON file or set credentials in another way
  2. Create an object to connect to the Cloud API
  3. Upload your document file
  4. Perform the conversion using getPageConvertToGif
  5. Download the result if need it

System Requirements

It is easy to get started with Aspose.PDF Cloud Node.js SDK and there is nothing to install. Simply create an account at Aspose for Cloud and get your application information. Once you have the App SID & key, you are ready to give the Aspose.PDF Cloud Node.js SDK.

  • CPU: 1GHz
  • RAM: 512Mb
  • Free space on disk: 20Mb
  • Any OS Microsoft Windows, Mac OS, Linux x32/x64
  • node.js v4.8 or higher

 

This sample code shows PDF to GIF Cloud Node.js SDK Conversion

const fs = require("fs");
const credentials = require("./credentials.json");
const { PdfApi } = require("asposepdfcloud");

// Load your Application Secret and Key from the JSON file or set credentials in another way
async function convertPDFtoGIF() {
    const localImageFileName = "C:\\Samples\\sample.pdf";
    const storageImageFileName = "sample.pdf";
    const pdfApi = new PdfApi(credentials.id, credentials.key);
    let fileData = fs.readFileSync(localImageFileName);
    try {
        let uploadResult = await pdfApi.uploadFile(storageImageFileName, fileData);
        console.log(uploadResult.response.text);
    }
    catch (error) {
        console.error(error.response.text);
    }

    try {
        let convertResult = await pdfApi.getPageConvertToGif(storageImageFileName, 1);
        fs.writeFileSync("sample.gif",convertResult.body);
    } catch (error) {
        console.error(error.response.text);
    }
}
 
  •  

    Free App to Convert PDF to GIF

    Check our live demos for PDF to GIF conversion with following benefits.

      No need to download or setup anything.
      No need to write any code.
      Just upload your PDF file and hit the "Convert" button.
      You will instantly receive a link to download the result.

    A PDF Processing Library to create cross-platform applications with the ability to generate, modify, convert, render, secure and print documents without using Adobe Acrobat. .NET PDF API offers compression, table creation, graph & image functions, hyperlinks, stamp and watermarking tasks, extended security controls & custom font handling.

    PDF What is PDF File Format

    Portable Document Format (PDF) is a type of document created by Adobe back in 1990s. The purpose of this file format was to introduce a standard for representation of documents and other reference material in a format that is independent of application software, hardware as well as Operating System. PDF files can be opened in Adobe Acrobat Reader/Writer as well in most modern browsers like Chrome, Safari, Firefox via extensions/plug-ins. Most of the commercially available software suites also offer conversion of their documents to PDF file format without the requirement of any additional software component. Thus, PDF file format has full capability to contain information like text, images, hyperlinks, form-fields, rich media, digital signatures, attachments, metadata, Geospatial features and 3D objects in it that can become as part of source document.

    Read More

    GIF What is GIF File Format

    A GIF or Graphical Interchange Format is a type of highly compressed image. Owned by Unisys, GIF uses the LZW compression algorithm that does not degrade the image quality. For each image GIF typically allow up to 8 bits per pixel and up to 256 colours are allowed across the image. In contrast to a JPEG image, which can display up to 16 million colours and fairly touches the limits of the human eye. Back when the internet emerged, GIFs remained the best choice because they required low bandwidth and compatible for the graphics that consume solid areas of colour. An animated GIF combines numerous images or frames into a single file and displays them in a sequence to generate an animated clip or a short video. The colour limitations are up to 256 for each frame and are likely to be the least suitable for reproducing other images and photographs with colour gradient.

    Read More
     

    Other Supported Conversions

    You can also convert PDF into many other file formats including few listed below.

    PDF TO WORD (Microsoft Word DOC & DOCX)
    PDF TO EXCEL (Microsoft Excel)
    PDF TO BMP (Bitmap Image)
    PDF TO DOC (Microsoft Word Binary Format)
    PDF TO DOCX (Office 2007+ Words Document)
    PDF TO Gif (Enhanced Metafile Format)
    PDF TO EPUB (E-book Format)
    PDF TO HTML (Hyper Text Markup Language)
    PDF TO JPEG (JPEG Image)
    PDF TO PNG (Portable Network Graphics)
    PDF TO PPTX (Open XML presentation Format)
    PDF TO SVG (Scalable Vector Graphics)
    PDF TO TEX (LaTeX Output Text)
    PDF TO TIFF (Tagged Image Format)
    PDF TO TXT (Text Document)
    PDF TO XLS (Excel Binary Format)
    PDF TO XLSX (OOXML Excel File)
    PDF TO XML (Extensible Markup Language)
    PDF TO XPS (XML Paper Specifications)