Can BuildVu output a single file?
BuildVu does not have a setting which can generate a single output file, but there are settings that allow you to generate only one .html
(or .svg
) file per page by embedding external assets (such as fonts and images) as Base64.
These configuration options are as follows:
- setIncludedFonts (set to a Base64 variant)
- setEmbedImagesAsBase64Stream (set to true)
- setInlineSVG (set to true) (BuildVu-HTML only)
If you are using BuildVu’s Content mode then the generated content is designed to be easy for you to post-process. Post-processing could include merging pages into a single file if that is your requirement.
Where possible we recommend against embedding fonts as Base64 because it prevents BuildVu sharing font between pages, thereby increasing the converted file size and making the document slower to load.
It is also important to consider performance when embedding all pages into a single file. PDF files are designed to be random access, allowing PDF readers to display individual pages without needing to load the entire document.
On the other hand, web browsers parse and render the whole HTML document on load. This means that if all pages are included in a single file, then documents that are complex or have a large number of pages can be slow to load and may even hang or crash the web browser (particularly on mobile devices).
That is why our recommendation is to load individual pages dynamically on an on-demand basis, which is how the IDRViewer works.