Convert BMP to PDF

Convert BMP to PDF

Using Aspose.Imaging for Python via .NET, developers can convert BMP to PDF formats. This article shows how to export/convert BMP file to PDF formats with Aspose.Imaging. Aspose.Imaging for Python via .NET provides the Image class to load BMP files and same can be used to convert the BMP to PDF formats. The following code snippet shows you how to convert BMP to PDF image.

import aspose.pycore as aspycore
from aspose.imaging import Image
from aspose.imaging.fileformats.bmp import BmpImage
from aspose.imaging.fileformats.pdf import PdfDocumentInfo
from aspose.imaging.imageoptions import PdfOptions
import os
if 'TEMPLATE_DIR' in os.environ:
templates_folder = os.environ['TEMPLATE_DIR']
else:
templates_folder = r"C:\Users\USER\Downloads\templates"
delete_output = 'SAVE_OUTPUT' not in os.environ
data_dir = templates_folder
with aspycore.as_of(Image.load(os.path.join(data_dir, "template.bmp")), BmpImage) as image:
export_options = PdfOptions()
export_options.pdf_document_info = PdfDocumentInfo()
image.save(os.path.join(data_dir, "result.pdf"), export_options)
if delete_output:
os.remove(os.path.join(data_dir, "result.pdf"))