Convert Image to PDF on Server/Desktop

Many image types can be converted to PDF Documents using PDF.Convert.ToPDF method. For a complete list of formats supported, please refer to Desktop/Server image formats or Web image formats. Some of the formats such as HEIC and PSD formats require an additional plugin called the Advanced Imaging Module. More information about the module and download links can be found in the advanced imaging module guide.

1// Start with a PDFDoc (the conversion destination)
2PDFDoc doc = new PDFDoc();
3
4// perform the conversion with no optional parameters
5Convert.ToPdf(doc, filename);

For the image formats that are exclusively supported by Advanced Imaging module, the path containing the module should be added using PDFNet.AddResourceSearchPath prior to invoking the PDF.Convert.ToPDF method. The following snippets demonstrate how this can be done.

1// Use a try-catch block here to catch PDFNetException
2PDFNet.AddResourceSearchPath('relative/path/to/Lib/');
3using (PDFDoc pdfdoc = new PDFDoc())
4{
5 pdftron.PDF.Convert.ToPdf(pdfdoc, input_path + input_file);
6 pdfdoc.Save(output_path + output_file_name, SDFDoc.SaveOptions.e_remove_unused);
7}

Sample

For a complete working sample that uses the Advanced Imaging Module and pdftron.PDF.Convert.ToPdf to convert formats such as HEIC and PSD to PDF, see the AdvancedImagingTest sample . This same code can be used to integrate the module into your application or project.

Did you find this helpful?

Trial setup questions?

Ask experts on Discord

Need other help?

Contact Support

Pricing or product questions?

Contact Sales