Convert BMP to PDF via C++
Sample code for BMP to PDF C++ conversion. Use API example code for batch BMP files to PDF conversion with VC++, GNU C++ in kinds of application.
Convert BMP to PDF in C++
Convert programmatically BMP to PDF format with a modern C++ API. Use just a few lines of code to convert BMP to PDF. The Aspose.PDF library will allow any developer to easily solve the tasks of converting BMP to PDF using the C++. For a more detailed description of the code snippet and other possible conversion formats, see the Documentation pages. Also, you can check the quality of converting file to file directly in your browser online in a second. In order to convert BMP to PDF, we’ll use Aspose.PDF for C++ API which is a feature-rich, powerful and easy to use document manipulation and conversion API for C++ platform. Open NuGet package manager, search for Aspose.PDF and install. You may also use the following command from the Package Manager Console. Check the details of Installing the Library on the Documentation pages.
Package Manager Console Command
PM> Install-Package Aspose.PDF.Cpp
How to Convert BMP to PDF
C++ developers can easily load & convert BMP files to PDF in just a few lines of code.
- Initialize a new Document
- Load input BMP image
- Save the output PDF file.
System Requirements
Aspose.PDF for C++ is supported on all major operating systems. Just make sure that you have the following prerequisites.
- Microsoft Windows or a compatible OS with C++ Runtime Environment for Windows 32 bit, Windows 64 bit, and Linux 64 bit.
- Development environment like Microsoft Visual Studio.
- Aspose.PDF for C++ DLL referenced in your project.
This sample code shows BMP to PDF C++ Conversion
std::clog << "BMP to PDF convert: Start" << std::endl;
// String for path name
String _dataDir("C:\\Samples\\Conversion\\");
// String for input file name
String infilename("sample.bmp");
// String for input file name
String outfilename("ImageToPDF-BMP.pdf");
// Open document
auto document = MakeObject<Document>();
// Add empty page in empty document
auto page = document->get_Pages()->Add();
auto image = MakeObject<Aspose::Pdf::Image>();
image->set_File(_dataDir + infilename);
// Add image on a page
page->get_Paragraphs()->Add(image);
// Save output document
document->Save(_dataDir + outfilename);
std::clog << "BMP to PDF convert: Finish" << std::endl;