Some test text!

Search
Hamburger Icon

Go / Guides / Convert from PDF

Convert PDF to multiple file types in Go

To convert PDF documents to different format types.

Internet connection is not required for conversion.
Convert PDF to DOCX, DOC, HTML, SVG, TIF, PNG, JPEG, XPS, EPUB, TXT, and many other formats.
doc := NewPDFDoc(filename)

// Convert PDF document to SVG
ConvertToSvg(doc, output_filename + ".svg")

// Convert PDF document to XPS
ConvertToXps(filename, output_filename + ".xps")

// Convert PDF document to multipage TIFF
tiffOptions := NewTiffOutputOptions()
tiffOptions.SetDPI(200)
tiffOptions.SetDither(true)
tiffOptions.SetMono(true)
ConvertToTiff(filename, output_filename + ".tiff", tiff_options)

// Convert PDF to XOD
ConvertToXod(filename, output_filename + ".xod")

// Convert PDF to HTML
ConvertToHtml(filename, output_filename + ".html")

PDF Converter (SVG, XPS, TIFF, JPG, RTF, TXT, More)
Full sample code which shows how to use PDFNet Convert for direct, high-quality conversion between PDF, XPS, EMF, SVG, TIFF, PNG, JPEG, and other image formats.

About converting from PDF

The Apryse SDK also supports converting from PDF to other formats like EMF, EPUB, XOD, HTML and XPS.

In addition to the document formats, exporting to image formats like TIFF, SVG, PNG and JPEG are supported too.

Semantic structure information like tables, headers, footers, paragraphs are not part of the PDF specification and do not exist in PDFs. To extract this type of data, any type of conversion or extraction tool will need to have a good document understanding to differentiate between tables or paragraphs. As part of our efforts at Apryse to provide cutting edge document tools, we have created Apryse IDP with Intelligent Data Extraction - APIs for extracting structured data to JSON

Get the answers you need: Chat with us