Work with Images in PDF via C++
Manipulate images in PDF document. Use Aspose.PDF for C++ to modify PDF documents programmatically
Most popular action with Images in C++
Add Image to PDF Document Using C++ Library
In order to add Image in PDF, we’ll use Aspose.PDF for C++ API which is a feature-rich, powerful and easy to use document manipulation API for cpp platform. Open NuGet package manager, search for Aspose.PDF and install. You may also use the following command from the Package Manager Console.
Add Image to PDF via C++
You need Aspose.PDF for C++ to try the code in your environment.
- Create a Document object and open the input PDF document.
- Get the page you want to add an image.
- Add the image into the page’s Resources collection.
- Use the GSave operator to save the current graphical state.
- Use ConcatenateMatrix operator to specify where the image is to be placed.
- Use the Do operator to draw the image on the page.
- Use GRestore operator to save the updated graphical state.
- Save the PDF file.