Render text documents as HTML, PDF, and image files
Leave feedback
On this page
GroupDocs.Viewer for Python allows you to convert text documents to HTML, PDF, PNG, and JPEG formats so you can view document content in a web browser, PDF or image viewer application.
To start with the GroupDocs.Viewer API, create a Viewer class instance. Pass a text document you want to view to the class constructor. You can load the document from a file or stream. Call one of the Viewer.view method overloads to convert the image to HTML, PDF, PNG, or JPEG format. These methods allow you to render the entire document or specific pages.
When you load a text document from a file, you should explicitly specify their format. To do this, create a LoadOptions class instance and use the FileType method. Then pass this instance to the Viewer class constructor.
fromgroupdocs.viewerimportViewer,FileTypefromgroupdocs.viewer.optionsimportLoadOptions,PdfViewOptionsdefrender_text_with_load_options():# Specify the file encoding. load_options=LoadOptions(FileType.MD)# Convert the document to PDF.withViewer("terms_of_service.txt",load_options)asviewer:viewOptions=PdfViewOptions("render_text_with_load_options/text_with_load_options.pdf")viewer.view(viewOptions)if__name__=="__main__":render_text_with_load_options()
terms_of_service.txt is the sample file used in this example. Click here to download it.
Create an HtmlViewOptions.for_embedded_resources class instance and pass it to the Viewer.view method to convert a text file to HTML. The HtmlViewOptions class properties allow you to control the conversion process. For instance, you can embed all external resources in the generated HTML file, minify the output file, and optimize it for printing. Refer to the following documentation section for details: Rendering to HTML.
Create HTML files with embedded resources
To save all elements of an HTML page (including text, graphics, and stylesheets) into a single file, call the HtmlViewOptions.for_embedded_resources method and specify the output file name.
fromgroupdocs.viewerimportViewerfromgroupdocs.viewer.optionsimportHtmlViewOptionsdefrender_text_to_html():# Load text filewithViewer("terms_of_service.txt")asviewer:# Convert the text file to HTML.# {0} is replaced with the current page number in the output file names.viewOptions=HtmlViewOptions.for_embedded_resources("render_text_to_html/pdf_page_{0}.html")viewer.view(viewOptions)if__name__=="__main__":render_text_to_html()
terms_of_service.txt is the sample file used in this example. Click here to download it.
<!doctype html><html lang='en'><head><meta charset = 'utf-8'><meta name='viewport' content='width=device-width, initial-scale=1, shrink-to-fit=no'><title>terms_of_service.txt</title></head> <style type='text/css'>.gdv-container pre { width:588px; white-space:normal; } .gdv-container { margin-top:60px; margin-left:60px; }</style><body><div style="font-size:10pt;font-family:Times New Roman;" class='gdv-container'><pre>London is the capital city of England and the United Kingdom, and the most popul
[TRUNCATED]
If you want to store output HTML files and additional resource files (such as fonts, images, and style sheets) separately, call the HtmlViewOptions.for_external_resources method and pass the following parameters:
The output file path format
The path format for the folder with external resources
The resource URL format
fromgroupdocs.viewerimportViewerfromgroupdocs.viewer.optionsimportHtmlViewOptionsdefrender_text_to_html_external():# Load text filewithViewer("terms_of_service.txt")asviewer:# Create an HTML file for each page.# Specify the HTML file names and location of external resources.# {0} and {1} are replaced with the current page number and resource name, respectively.viewOptions=HtmlViewOptions.for_external_resources("render_text_to_html_external/pdf_page_{0}.html","render_text_to_html_external/pdf_page_{0}/resource_{0}_{1}","render_text_to_html_external/pdf_page_{0}/resource_{0}_{1}")viewer.view(viewOptions)if__name__=="__main__":render_text_to_html_external()
terms_of_service.txt is the sample file used in this example. Click here to download it.
fromgroupdocs.viewerimportViewerfromgroupdocs.viewer.optionsimportHtmlViewOptionsdefrender_text_to_single_html():# Load text filewithViewer("terms_of_service.txt")asviewer:# Create an HTML file.viewOptions=HtmlViewOptions.for_embedded_resources("render_text_to_single_html/text_to_single_html.html")# Render the file to a single page. viewOptions.render_to_single_page=Trueviewer.view(viewOptions)if__name__=="__main__":render_text_to_single_html()
terms_of_service.txt is the sample file used in this example. Click here to download it.
<!doctype html><html lang='en'><head><meta charset = 'utf-8'><meta name='viewport' content='width=device-width, initial-scale=1, shrink-to-fit=no'><title>terms_of_service.txt</title></head> <style type='text/css'>.gdv-container pre { width:588px; white-space:normal; } .gdv-container { margin-top:60px; margin-left:60px; }</style><body><div style="font-size:10pt;font-family:Times New Roman;" class='gdv-container'><pre>London is the capital city of England and the United Kingdom, and the most popul
[TRUNCATED]
Create a PdfViewOptions class instance and pass it to the Viewer.view method to convert a text file to PDF. The PdfViewOptions class properties allow you to control the conversion process. For instance, you can protect the output PDF file, reorder its pages, and specify the quality of document images. Refer to the following documentation section for details: Rendering to PDF.
fromgroupdocs.viewerimportViewerfromgroupdocs.viewer.optionsimportPdfViewOptionsdefrender_text_to_pdf():# Load text filewithViewer("terms_of_service.txt")asviewer:# Convert the text file to PDF.viewOptions=PdfViewOptions("render_text_to_pdf/text_document.pdf")viewer.view(viewOptions)if__name__=="__main__":render_text_to_pdf()
terms_of_service.txt is the sample file used in this example. Click here to download it.
fromgroupdocs.viewerimportViewerfromgroupdocs.viewer.optionsimportPngViewOptionsdefrender_text_to_png():# Load text filewithViewer("terms_of_service.txt")asviewer:# Convert the text file to PNG.# {0} is replaced with the current page number in the output image names.viewOptions=PngViewOptions("render_text_to_png/text_page_0_{0}.png")# Set width and height.viewOptions.width=950viewOptions.height=550viewer.view(viewOptions)if__name__=="__main__":render_text_to_png()
terms_of_service.txt is the sample file used in this example. Click here to download it.
fromgroupdocs.viewerimportViewerfromgroupdocs.viewer.optionsimportJpgViewOptionsdefrender_text_to_jpg():# Load text filewithViewer("terms_of_service.txt")asviewer:# Convert the text file to JPEG.# {0} is replaced with the current page number in the output image names.viewOptions=JpgViewOptions("render_text_to_jpg/text_to_jpg_{0}.jpg")# Set width and height.viewOptions.width=950viewOptions.height=550viewer.view(viewOptions)if__name__=="__main__":render_text_to_jpg()
terms_of_service.txt is the sample file used in this example. Click here to download it.