HTML5 can contain links to external images and other resources (which often makes the HTML5 page much faster to load because it is a small text file with links to the images, videos, or audio it needs). This work fine so long as you have network connectivity…
One of the big new features in HTML5 is the ability for the code to work without a network connection and to store data offline in a cache. Sometimes, however, this functionality is overkill and you can embed an image more simply by just inserting the data into the HTML5 file.
An image consists of binary data so it needs to be stored in a suitable format inside the text file. Base64 encoding (a simple algorithm which converts bytes into a block of what looks like text data) is ideal (this is what you often use in emails to add in binary content). So instead of the more usual HMTL5 format of
<img id="Im0" style="display: none;" src="img/1/Im0.png" alt="Im0" width="540" height="720" />
you would see
base64,iV...Big block of chars here...rDYgg==" alt="Im0" width="540" height="720" />
If you want to have a try in our PDF5HTML5 convertor, there is a new flag to enable it in today’s release (it is commented out by default in ExtractPagesAsHTML.java example).
/** * embed image inside PDF as base64 encoded stream */HTMLoutput.setBooleanValue(HTMLDisplay.EmbedImageAsBase64Stream, true);
Of course once you start playing with images, you may want to have far more control on images and be able to control their exact size.
BuildVu allows you to
View PDF files in a Web app |
Convert PDF documents to HTML5 |
Parse PDF documents as HTML |
What is BuildVu?
BuildVu is a commercial SDK for converting PDF files into standalone HTML or SVG.
Why use BuildVu?
BuildVu allows you to integrate PDF into your HTML workflow effortlessly and securely by producing clean HTML that is easy for developers to work with.
What licenses are available?
We have 3 licenses available:
Cloud for conversion using the shared IDRsolutions cloud server, Self hosted server option for your own cloud or on-premise servers, and Enterprise for more demanding requirements.
How to use BuildVu?
Want to learn more about BuildVu and how to use it, we have plenty of tutorials and guides to help you.
Hi Mark,
Is there a way to conditionally embed an image based on the size of the image?
Thanks.
Not at present. If you have access to the source code it would be a minor addition to OutputDisplay/HTMLDisplay