Aspose.Page for C++ is a native C++ library that enables the developers to add Page handling capabilities to their C++ applications. The library allows to perform a wide range of document processing tasks including creation of XPS files, form processing, text and page manipulation, management of annotations, attachments, bookmarks, custom font handling and much more.
$ dotnet add package Aspose.Page.Cpp
Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License
Aspose.Page for C++ is an on premise C++ API that allows you to add XPS manipulation features to your own applications. The API also supports converting XPS, EPS & PS documents to other formats.
XPS documents.XPS document.sRGB, scRGB, and any space-based on ICC profile.XPS document.XPS document or preserve print tickets in opened .XPSXPS documents in various supported file formats.XPS, EPS, PS
Fixed Layout: PDF
Image: BMP, TIFF, JPEG, PNG
Metafiles: EMF, WMF
Animation: GIF
Image: BMP, TIFF, JPEG, PNG
Aspose.Page for C++ is a native library. It supports 32 as well as 64-bit operating systems (Microsoft Windows desktop (XP, Vista, 7, 8, 10) and server operating systems (2003, 2008, 2012)). Aspose.Page for C++ is designed to perform equally well, both on the server and client-side. It is a native assembly that can be deployed by simply copying it.
Are you ready to give Aspose.Page for C++ a try? Simply execute Install-Package Aspose.Page.Cpp from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Aspose.Page for C++ and want to upgrade the version, please execute Update-Package Aspose.Page.Cpp to get the latest version.
// Create new XPS file
auto doc = System::MakeObject<XpsDocument>(dataDir() + u"Sample1.xps");
// Add empty page at end
doc->AddPage();
// Insert an empty page at beginning of pages list
doc->InsertPage(1, true);
// Save resultant XPS document
doc->Save(outDir() + u"AddPages_out.xps");
Product Page | Docs | Demos | API Reference | Examples | Blog | Search | Free Support | Temporary License