Work with Attachments in PDF via C++
How to Get, Add, Save, and Delete Attachments from PDF programmatically with C++
How to Manage Attachments Using C++ Library
In order to add Attachments in PDF file, 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.
Work with Attachments in PDF via C++
You need Aspose.PDF for C++ to try the code in your environment.
- Create a new C++ project.
- Add a reference to Aspose.PDF DLL.
- Create a Document object.
- Create a FileSpecification object with the file you are adding, and file description.
- Add the FileSpecification object to the Document object’s EmbeddedFiles collection, with the collection’s Add method
- Save the PDF file.