HTML JPG PDF XML DOCX
  Product Family
PDF

Convert BMP to PDF via Cloud Node.js SDK

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

Get Started

How to Convert BMP to PDF Using Node.js SDK

To convert BMP to PDF, 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 BMP to PDF via Node.js

Aspose.PDF Cloud Node.js developers can easily load & convert BMP files to PDF 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 putImageInStorageToPdf
  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 BMP to PDF Cloud Node.js SDK Conversion

const fs = require("fs");
const credentials = require("./credentials.json");
const { PdfApi } = require("asposepdfcloud");
const { ImageTemplatesRequest } = require("asposepdfcloud/src/models/imageTemplatesRequest");
const { ImageTemplate } = require("asposepdfcloud/src/models/imageTemplate");
const { ImageSrcType } = require("asposepdfcloud/src/models/imageSrcType");

// Load your Application Secret and Key from the JSON file or set credentials in another way
async function convertBMPtoPDF() {
    const localImageFileName = "C:\\Samples\\sample.bmp";
    const storageImageFileName = "sample.bmp";
    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);
    }
    let imageTemplateList = [];
    let imageTemplate = new ImageTemplate();
    imageTemplate.imagePath = storageImageFileName;
    imageTemplate.imageSrcType = ImageSrcType.Common;
    imageTemplateList.push(imageTemplate);

    let imageTemplatesRequest = new ImageTemplatesRequest()
    imageTemplatesRequest.IsOCR = false;
    imageTemplatesRequest.imagesList = imageTemplateList;

    try {
        let convertResult = await pdfApi.putImageInStorageToPdf("sample-bmp-to-pdf.pdf", imageTemplatesRequest);
        console.log(convertResult.response.text);
    } catch (error) {
        console.error(error.response.text);
    }
}
 
  •  

    Free App to Convert BMP to PDF

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

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

    Aspose.PDF Cloud is a true REST API that enables you to perform a wide range of document processing operations including creation, manipulation, conversion and rendering of PDF documents in the cloud.

    BMP What is BMP File Format

    Files having extension .BMP represent Bitmap Image files that are used to store bitmap digital images. These images are independent of graphics adapter and are also called device independent bitmap (DIB) file format. This independency serves the purpose of opening the file on multiple platforms such as Microsoft Windows and Mac. The BMP file format can store data as two-dimensional digital images in both monochrome as well as color format with various colour depths.

    Read More

    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