Get HTML markup in different forms

This demonstration shows how to open input document, convert it to intermediate EditableDocument, and get HTML markup in different forms depending on client requirements.

Preparations

When input document is loaded into Editor class and opened for edit by transforming to the intermediate EditableDocument class, it is possible to generate and get HTML markup in different forms. Code below shows all variations of such procedure.

First of all user needs to load document into Editor class and open it for editing, what is demonstrated in the code below.

String inputFilePath = "C:\\input_path\\document.docx"; //path to some document
WordProcessingLoadOptions loadOptions = new WordProcessingLoadOptions();
Editor editor = new Editor(inputFilePath, loadOptions); //passing path and load options (via delegate) to the constructor
EditableDocument document = editor.edit(new WordProcessingEditOptions()); //opening document for editing with format-specific edit options

Piece of code above has prepared a ready-to-use instance of EditableDocument class, that contains the original document in its own intermediate format and is able to generate HTML markup in different forms.

Getting whole HTML content

The most default and standard method for generating HTML markup is parameterless getContent() method:

String htmlContent = document.getContent();

If document has external resources (stylesheets, fonts, images), they are referenced via different HTML elements: stylesheets are specified through LINK elements, while images — through IMG. When using the getContent() method, such external resources will be referenced by external links. For example:

<link href="stylesheet.css" rel="stylesheet"/>
<IMG src="image.png"/"> 

Quite often on the web-server, where such HTML will be edited, resources are processed by specific HTTP handler. In such cases it is required to adjust paths to such endpoints. More advanced overload of the getContent() method can help:

String externalImagesPrefix = "http://www.mywebsite.com/images/id=";
String externalCssPrefix = "http://www.mywebsite.com/css/id=";
String prefixedHtmlContent = document.getContent(externalImagesPrefix, externalCssPrefix);

In the example above specified prefixes will be added to every external link in the document’s markup. For example, with the code above link will be the next:

<link href="http://www.mywebsite.com/css/id=stylesheet.css" rel="stylesheet"/>
<IMG src="http://www.mywebsite.com/css/id=image.png"/"> 

Getting HTML BODY content

Lot of HTML WYSIWYG editors are not able to process the whole HTML document, with HEAD section and so on. They are able only to process inner content of HTML->BODY element. In order to obtain such part of HTML markup, EditableDocument class contains the getBodyContent() method, which, as previous one, has two overloads, that are provided below:

String bodyContent = document.getBodyContent();
String externalImagesPrefix = "http://www.mywebsite.com/images/id=";
String prefixedBodyContent = document.getBodyContent(externalImagesPrefix); 

First parameterless overload, like previous one, leaves links to the external images intact. Second, that obtains external resource prefix, adds this prefix to every url in the ‘src’ attribute of every IMG tag, that is found inside HTML->BODY markup.

Getting base64-encoded content

Sometimes it is necessary to obtain all content of all document with all used resources into one single string. GroupDocs.Editor allows to do this:

String embeddedHtmlContent = document.getEmbeddedHtml();

In such string all stylesheets will be placed into the STYLE elements in the HTML->HEAD section, all images in IMG elements will be serialized with base64 encoding and placed directly in the ‘src’ attributes. All fonts and images, which are used in stylesheets, will also be serialized and stored in appropriate locations in the corresponding stylesheet. Such string will be fully autonomous and self-sufficient.

Conclusion

This guide has explained different ways of obtaining HTML markup from a document in different forms.