Expand my Community achievements bar.

PDFs in AEM: Embed PDFs into your pages with PDF Viewer | AEM Community Blog Seeding

Avatar

Administrator

BlogImage.jpg

PDFs in AEM: Embed PDFs into your pages with PDF Viewer by Adobe Tech Blog - Ben Vanderberg

Abstract

Content can come in a variety of formats in AEM. They could be images, videos, or even PDF documents. When it comes to PDFs, what is often the case is these PDFs are linked to and then rendered in the browser or downloaded to your computer, taking you away from the context and navigation of your own website. You also don’t get any insights into how they were interacting with PDFs other than downloading.
There are a lot of common scenarios where this is the case. For example, you might see white-papers, guides, contracts, documents. If you are using AEM to power a customer portal or an intranet, you could have documents specifically related to a certain person that you want to host online.

As part of AEM Core Components, there is now a new component called PDF Viewer, powered by Adobe PDF Embed API as part of Adobe Document Services. In a previous blog, I wrote in detail how you can take advantage of PDF Embed API. This makes it easy to incorporate it into your AEM pages.

PDF Viewer allows you to embed PDF views into a web page using simple drag and drop. The core component supports all of the embed modes supported as part of PDF Embed API including Full Window, Inline, and Sized Container for use with all sorts of PDF content. As a core component, this means that this can also be extended and customized by AEM developers to meet your specific needs.
In this article, let’s learn more about how we can use PDF Viewer to embed viewing experiences into our webpages.

Requirements
1. AEM 6.5
2. AEM Core Components 2.10+
3. PDF Embed API Client ID

For this article, we are going to assume you are running AEM on a local instance (hence using localhost) but this will work with any installed AEM instance.

Read Full Blog

PDFs in AEM: Embed PDFs into your pages with PDF Viewer

Q&A

Please use this thread to ask the related questions.



Kautuk Sahni
Topics

Topics help categorize Community content and increase your ability to discover relevant content.

4 Replies

Avatar

Level 3

Does this component support the ability to download one page versus the entire asset? I'm not seeing that as an option based on this list:

  1. ./documentPath - defines the path of the pdf to display
  2. ./type - defines the display type
  3. ./defaultViewMode - defines the display view
  4. ./borderless - true to enable full screen borderless
  5. ./showAnnotationTools - true to enable annotation tools
  6. ./showFullScreen - true to show full screen button
  7. ./showLeftHandPanel - true to display left side panel
  8. ./showDownloadPdf - true to show download button
  9. ./showPrintPdf - true to show print button
  10. ./showPageControls - true to show page controls
  11. ./dockPageControls - true to dock controls to bottom

Avatar

Level 2

Are you asking if only one page of a multi-page PDF can be downloaded to the local device or if the viewer will byte-serve the PDF a page at a time and start to show it before the full file is downloaded?

Avatar

Level 3

Hello Joel,

I'm looking for a way so that the user can choose to download one page (or a series of pages) in a multipage asset versus only being able to download the full asset to a local device.

 

The use case is for a 1000 page product catalog where the user may only need a selection of pages from the asset related to a specific product.

 

Thank you and others for insight.

 

James

Avatar

Level 2

That's currently not possible using just Embed API. However, It would be easy enough to integrate our PDF Services API to "split" the PDF file and retrieve only the pages requested and return that to the browser.