Convert publisher formats

About Publisher formats

If you are in the digital marketing business, do email marketing, or have some publishing agency, you must be aware of Microsoft Publisher. It lets you create design layouts that contain information including text, raster and vector graphics. These can be used to create newsletters, flyers, brochures, postcards, and email content.

Publisher file formats include file types such as PUB file format that is saved to a disc when a user creates a project in Microsoft Publisher and saves it to disc.

Supported Publisher file conversions

FromTo
PUBPDF: PDF

Convert from Publisher formats

With GroupDocs.Conversion you can easily convert your Publisher file into another file format. For example, the Publisher to PDF conversion code snippet looks like this:

// Load the source Publisher file
using (Converter converter = new Converter("sample.pub"))
{
    // Set the convert options for PDF format
    PdfConvertOptions options = new PdfConvertOptions();
    // Convert to PDF format
    converter.Convert("converted.pdf", options);
}

Put it simply - you just load a Publisher file into the Converter class instance, select the desired output format and GroupDocs.Conversion does all the rest.

Note
Refer to the API reference for more conversion options and customizations.