Aspose.PUB for C++ is a native C++ library that enables the developers to add pub converting to their C++ applications. The library allows convert pub document to pdf.
$ dotnet add package Aspose.PUB.Cpp
Product Page | Docs | API Reference | Examples | Blog | Search | Free Support | Temporary License
Aspose.PUB for C++ is a simple API that allows you to read & convert Microsoft Publisher� (PUB) files to PDF format programmatically in your C++ Apps. It also provides easy-to-understand interfaces to edit the metadata of PUB files.
Microsoft Publisher: PUB
Fixed Layout: PDF
You can use Aspose.PUB for C++ to build any type of 32-bit and 64-bit C++ applications. You can use it on the server and client-side by simply copying the assembly without worrying about other services or modules.
Are you ready to give Aspose.PUB for C++ a try? Simply execute Install-Package Aspose.PUB.Cpp from Package Manager Console in Visual Studio to fetch the NuGet package. If you already have Aspose.PUB for C++ and want to upgrade the version, please execute Update-Package Aspose.PUB.Cpp to get the latest version.
You can execute the below code snippet to see how Aspose.PDF API performs in your own development environment or check the GitHub Repository for other common usage scenarios.
// Initialize license object
auto license = System::MakeObject<Aspose::Pub::License>();
// Set license
license->SetLicense(dataDir() + u"License\\Aspose.PUB.C++.lic");
System::String filePub = dataDir() + u"1.pub";
System::String filePdf = dataDir() + u"1.pdf";
System::Console::WriteLine(u"Convert starting...");
System::SharedPtr<IPubParser> parser = PubFactory::CreateParser(filePub);
System::SharedPtr<Document> document = parser->Parse();
PubFactory::CreatePdfConverter()->ConvertToPdf(document, filePdf);
System::Console::WriteLine(u"Convert done.");
At the moment API lacks the support to convert images of PUB file to PDF file. So such images won't show up in the resultant output PDF file. This feature is in our plan to be released in the future.
Product Page | Docs | API Reference | Examples | Blog | Search | Free Support | Temporary License