Some test text!
Dotnetcore / Guides
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 here .
// Start with a PDFDoc (the conversion destination)
PDFDoc doc = new PDFDoc();
// perform the conversion with no optional parameters
Convert.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.
// Use a try-catch block here to catch PDFNetException
PDFNet.AddResourceSearchPath('relative/path/to/Lib/');
using (PDFDoc pdfdoc = new PDFDoc())
{
pdftron.PDF.Convert.ToPdf(pdfdoc, input_path + input_file);
pdfdoc.Save(output_path + output_file_name, SDFDoc.SaveOptions.e_remove_unused);
}
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.
Get the answers you need: Chat with us