/* Copyright 2019 Adobe All Rights Reserved. NOTICE: Adobe permits you to use, modify, and distribute this file in accordance with the terms of the Adobe license agreement accompanying it. If you have received this file from a source other than Adobe, then your use, modification, or distribution of it requires the prior written permission of Adobe. */ /* Control the default view mode */ const viewerConfig = { /* Allowed possible values are "FIT_PAGE", "FIT_WIDTH", "TWO_COLUMN", "TWO_COLUMN_FIT_PAGE" or "". */ defaultViewMode: "", }; /* Wait for Adobe Acrobat Services PDF Embed API to be ready */ document.addEventListener("adobe_dc_view_sdk.ready", function () { /* Initialize the AdobeDC View object */ var adobeDCView = new AdobeDC.View({ /* Pass your registered client id */ clientId: "81e65b76565c4895a996fc4208dfce10", /* Pass the div id in which PDF should be rendered */ divId: "adobe-dc-view", }); /* Invoke the file preview API on Adobe DC View object */ adobeDCView.previewFile({ /* Pass information on how to access the file */ content: { /* Location of file where it is hosted */ location: { url: "https://acrobatservices.adobe.com/view-sdk-demo/PDFs/Bodea Brochure.pdf", /* If the file URL requires some additional headers, then it can be passed as follows:- headers: [ { key: "", value: "", } ] */ }, }, /* Pass meta data of file */ metaData: { /* file name */ fileName: "Bodea Brochure.pdf" } }, viewerConfig); });
top of page
bottom of page