Available Now: Explore our latest release with enhanced accessibility and powerful IDP features
By Apryse | 2022 Dec 22
6 min
Tags
explainer
pdf viewer
Sharing PDFs in a website is a great way to reach a large audience. There are various ways to do this, ranging from:
This blog discusses these three embedding options, starting with the simplest and ending with the PDF viewing bells and whistles.
TLDR
You get what you pay for.
Embedding a PDF into your HTML has zero cost, but at the expense of functionality. Embedding an open-source, or open-source based, PDF viewer adds greater functionality with no licensing cost, but at the risk of being a dead-end if you later realise that you need advanced features. For advanced PDF features, a consistent viewing experience, unlimited customization, cross-platform support and more, a commercial PDF SDK solution offers most.
Free ✔✔✔
Easy ✔✔✔
Functionality X
PDF is a widely used format and all modern browsers have built-in PDF support. We can take advantage of this by using either anchor or inline iframe HTML elements to embed a PDF directly in a web page.
The easiest way to share a PDF file on a website is by using the anchor <a> element. When clicked, a hyperlink or anchor element takes a user to another location on the same page or to a different website.
<a href="my-file.pdf">My file</a>
Example <a> element and output
In the above example, the href attribute specifies where the file is located. Substitute the path to my-file.pdf with the path to your PDF file.
The <iframe> element is a container for embedding information from other webpages, either as a full page or a widget:
<iframe id="inlineFrameExample"
title="Inline Frame Example"
width="300"
height="200"
src="https://website.com/my-file.pdf">
</iframe>
Example <iframe> element and output for an HTML PDF viewer
While embedding PDFs in web pages using HTML provides a quick and easy strategy for sharing PDFs on a website, these methods have some limits:
Free ✔✔✔
Easy ✔
Functionality ✔
If you need improved PDF viewing and more functionality, such as text searching and selection, as well as zooming — but still want a zero-fee option — consider embedding a PDF viewer in your website rather than simply embedding PDFs using HTML.
An embedded viewer allows your users to open and view PDF documents directly in the browser, for a seamless user experience.
In this category there are several open-source software or software based on open-source available to you. Examples include:
For more information, see our 2021 JS PDF Library Evaluation on GitHub.
PDF.js is a free, open-source PDF viewer for displaying PDFs in a browser using JavaScript. Developed by Mozilla in 2011, PDF.js is maintained by an open-source community.
A PDF.js-based project offers a quick ramp up for modest functionality requirements, but is not cost-effective if any of the following are true:
PDF.js was designed as a PDF reader only; therefore, it does not support features that require editing PDFs, such as annotation, page manipulation, and redaction.
Free X
Easy ✔
Functionality ✔✔✔
A commercial solution such as Apryse WebViewer is the best solution if you require any of the following:
Check out this blog to know whether an open source or proprietary PDF viewer engine is right for your organization or not.
If you’re ready to embed Apryse WebViewer into your website, dive into the get-started documentation for more detail on installation with your JS framework of choice.
Want more information on Apryse WebViewer? Check out our comprehensive Buyer's Guide blog.
1. Set up your server environment.
If you do not have a server, follow these steps:
npm install -g http-server
You can now start the server by executing:
http-server -a localhost
By default, the server is hosted on http://localhost:8080
.
2. Extract the WebViewer package
Extract the package (WebViewer.zip) into your project directory (/myServer).
3. Create a new index.html webpage
Create a new index.html webpage in the same project directory and paste the following code into it:
<!DOCTYPE html>
<html>
<head>
<title>Basic WebViewer</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no" />
</head>
<!-- Import WebViewer as a script tag -->
<script src='WebViewer/lib/webviewer.min.js'></script>
<body>
<div id='viewer' style='width: 1024px; height: 600px; margin: 0 auto;'></div>
</body>
</html>
4. Add a script to instantiate WebViewer
To instantiate WebViewer, add this script to the body after the viewer div declaration from the previous step:
<script>
WebViewer({
path: 'WebViewer/lib', // path to the PDFTron 'lib' folder on your server
licenseKey: 'Insert commercial license key here after purchase',
initialDoc: 'https://pdftron.s3.amazonaws.com/downloads/pl/webviewer-demo.pdf',
// initialDoc: '/path/to/my/file.pdf', // You can also use documents on your server
}, document.getElementById('viewer'))
.then(instance => {
const { documentViewer, annotationManager } = instance.Core;
// call methods from instance, documentViewer and annotationManager as needed
// you can also access major namespaces from the instance as follows:
// const Tools = instance.Core.Tools;
// const Annotations = instance.Core.Annotations;
documentViewer.addEventListener('documentLoaded', () => {
// call methods relating to the loaded document
});
});
</script>
5. View the page
Make sure your server is up and running.
If using the server option from step 1, open http://localhost:8080/index.html on your browser. If you already have the page open, refresh the page.
You should see WebViewer appear.
For more information on using WebViewer, refer to this guide.
You can embed a PDF viewer in HTML using HTML tags quickly, easily, and at no cost. If “good enough” PDF sharing isn’t enough for your website and organization, consider embedding a PDF viewer directly in your website for more functionality and better viewing experiences, using an open-source viewer or a commercial solution.
Check out these resources for more information on all the options we provided in this blog:
We hope you found this blog useful. If you’d like to share your experiences with embedding PDFs in your website, either using an HTML PDF viewer or an embedded PDF viewer, drop us a line.
If you’d like to see Apryse WebViewer in action, we have a demo video series on YouTube or you can manipulate your own docusments right now in the interactive demo with WebViewer showcase.
To learn about the full range of Apryse SDK functionality, visit our website.
Tags
explainer
pdf viewer
Apryse
Related Products
Apryse PDF SDK for Web
Share this post
PRODUCTS
Enterprise
Small Business
Popular Content