Unlock the full value of DC Web with our global community.
Recently active
I have searched this issue on the community and haven't found an answer. Two days ago, Acrobat DC opened all PDFs in tab view. Yesterday, it stopped. When I go into Edit: Preferences: General, I do not get the option to select / deselect "Open documents as new tabs in the same window" as others have suggested. Please help!
Wanting to use this Power automate action however my spreadsheet is broken into two tabs. One being a summary and the other 'detail'.At present the action converts the entire sheet regardless of page setup in the excel being set to just one cell on the detail tab (attempting to avoid it producing the whole thing).Any way to filter or select just the one tab of sheet in the action would be great.
When we do the pdf to docx conversion from adobe acrobat dc application quality is good butwhen i tried through your node js sdk api. quality is bit poor.please find the attached sorece pdf and both acrobat dc application coverted and alsonode js sdk sample code one converted.please observe the node js sdk convserted file.please reply me as soon possible!
Hi there, When I cut and paste the html code from the Demo Site and embed this into my Weebly website, it doesn't work at all. I have tried to embed the basic Bodeo Brochure sample html code you have on the Demo site (see below):<div id="adobe-dc-view"></div> <script src="https://documentcloud.adobe.com/view-sdk/main.js"></script> <script type="text/javascript"> document.addEventListener("adobe_dc_view_sdk.ready", function(){ var adobeDCView = new AdobeDC.View({clientId: "<YOUR_CLIENT_ID>", divId: "adobe-dc-view"}); adobeDCView.previewFile({ content:{location: {url: "https://documentcloud.adobe.com/view-sdk-demo/PDFs/Bodea Brochure.pdf"}}, metaData:{fileName: "Bodea Brochure.pdf"} }, {}); }); </script> This didn't work. I then included my Client ID in between the " " marks, and pointed to a Google Drive url pdf document, and changed the fileName in the html as instructed. This didn't work either. I thought pointing to Google Driv
Dear valued Community, we are currently trying to use and integrate the PDF Embed API in our Platform of "ServiceNow". What we already achived is, that a PDF attachted to a record can be viewed and annotated. The main problem is, that the PDF get's destroyed after saving it via GlideSysAttachment.write() into the ServiceNow Database. We are receiving a blank PDF which includes the correct number of pages and - if available - save Annotations made via the API. I think that our code is mocking up the binary part of the PDF, while (trying to) translating the BufferArray into String, as the .write() function is awaiting a plain string. Our options:{ showDownloadPDF: true, showPrintPDF: false, enableAnnotationAPIs: true, includePDFAnnotations: true } Our Transform-Part in the Save-Promise:var textDecoder = new TextDecoder('utf-8'); file.content = textDecoder.decode(content); I know, that we are doing it wrong, because transforming binary into String will mock u
Demo works fine but when I enter my own client ID and pdf I get the file preview error. Recreated credientials as suggested in this thread. but didn't solve the issue. Read a bit about CORS issues but the pdf I'm using is located at my own domain so don't think that's it. Tried using different pdfs and locating them in the main directory not using subfolders and still the same preview error. Any help would be appreciated to get this sized container working. Thanks, .
I'm trying to use the STATUS_API in my application, but it simply doesn't work. Am I doing it wrong or there anything more to it?adobeDCView.registerCallback( AdobeDC.View.Enum.CallbackType.STATUS_API, function (metaData) { /* Resolve or reject response in given format */ /* Status callback success case */ return new Promise((resolve, reject) => { resolve({ code: AdobeDC.View.Enum.ApiResponseCode.SUCCESS, }); }); /* Status callback file modified case */ return new Promise((resolve, reject) => { resolve({ code: AdobeDC.View.Enum.ApiResponseCode.FILE_MODIFIED, data: { modifiedBy: { name: "iiii", mail: "mail@mail.com", } } }); }); }, { filePollFrequency: 10, keepPolling: true, } ); Even aft
Hi,In adobe node js sdk can we direclty take files through aws s3 link or https link? Thanks
Hi all, I'm struggling to find an answer/solution to this so I'm starting a new thread.Can I load a different PDF into an existing AdobeDC.View?I have a list of PDF on a site and one instance of AdobeDC.View. When the PDF link is clicked I want to open that PDF in AdobeDC.View? Is this possible? Thanks.V
Hi Every one,do you know if with api we could fill pdf and expert pdf as filiable pdf ? thanks a lot
Hello, Are there any possible reasons, why FilePreviewEvents are no longer firing?We registered the 2 callbacks below, the PDFAnalyticsEvents are firing but not the FilePreviewEvents.This is working before, but we don't what has changed. We don't get any javascript errors on the browser console. adobeDCView.registerCallback( AdobeDC.View.Enum.CallbackType.EVENT_LISTENER, function (event) { alert.log("Event: " + event.type); if (event.type === "PREVIEW_SELECTION_END") { previewFilePromise.then(adobeViewer => { adobeViewer.getAPIs().then(apis => { apis.getSelectedContent() .then(result => { selectedText = result.data; console.log("selectedText = " + selectedText); }) .catch(error => console.log(error));
An ISV wants a customer to use their application with PDF Tools API from a site which does not have direct internet access due to security reasons. However, the customer can provide a proxy server to access resources on the internet. In order to make this work, the ISV is supposed to provide domain name(s) / URL(s) to our customer's network team. Can you please advise on this matter?
I am using Embed API. I download pdf using $.ajax() and then load pdf asfunction loadPdf(pdfPath) { window.adobeDCView = new AdobeDC.View({clientId: adobeApiKeyStaging, divId: "adobe-dc-view"}); adobeDCView.previewFile({ content: { promise: Promise.resolve(stringToArrayBuffer(pdfPath)) }, metaData:{fileName: "Test1.pdf"} }, viewerConfig); }I convert string to Array Buffer and feel its not coverting correctly or Promise.resolve() require something else ?function stringToArrayBuffer2(bin) { var len = bin.length; var uInt8Array = new Uint8Array(len); for (var i = 0; i < len; i++) { uInt8Array[i] = bin.charCodeAt(i); } return uInt8Array.buffer; }If I send base64 from server then its working fine, but when I read raw pdf data then its showing blank pages. Following example is also working fine.function fetchPDF(urlToPDF) { return new Promise((resolve) => { fetch(
Redirect PDF document to Adobe Document Cloud from Sharepoint Framework Solution. Is there anyway to integrate or redirect to adobe document cloud from SPFX
/* Control the default view mode */const viewerConfig = { /* Allowed possible values are "FIT_PAGE", "FIT_WIDTH" or "" */ defaultViewMode: "",};/* Wait for Adobe Document 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: "<YOUR_CLIENT_ID>", /* Pass the div id in which PDF should be
Hi all, I have tried to find a solution to this - apologies if this has already been asked and answered, or whether it's a known fault (couldn't locate info on this). Essentially I have successfully embedded several PDFs onto our website using the API, opting for the 'INLINE' style. This works fine on Chrome, but on MS Edge it seems to produce some odd alignment within the iframe, doesn't extend the document height, and forces a kind of 'auto-scroll'. The document in question is embedded on the following page: https://innovatetax.com/infographic-a-guide-to-gst-in-canada/ If anyone can help me figure this out I'd be most grateful. I'd screenshot it but it's not possible as it keeps scrolling. NB. I have replicated this issue on several different machines and all have the same problem. Thanks in advance!
I am building a web app running on localhost as my development environment, but the Tools APi keeps returning "Exception encountered while executing operation Error: Invalid Credentials provided as argument." The sample code runs just fine using the exact same credentials code. This only occurs when running the Node.js Express server and attempting to access the Tools API. Any help would be most appreciated. Code is below. // Initial setup, create credentials instance. const credentials = PDFToolsSdk.Credentials .serviceAccountCredentialsBuilder() .fromFile("pdftools-api-credentials.json") .build(); &
I am getting an error when using the AdobeDC Embed API where somthimes it fails to embed the PDF and I get an console error stating "The user is not authenticated". This happens intermittently, often when I refresh the page and try comming back to the same PDF. The API key I am using does not change, so I am unsure what is causing it to fail authentication. I have checked the cookies and I am not sure if there is a correlation. Sometimes there are no cookies when I get an error, sometimes there are cookies in an "adobe.com" directory and somethimes in a "documentcloud.adobe.com" directory. I would appreciate any help.
I'm using the Full Window embed mode but in a Bootstrap column. Everything is working great except that the zoom controls don't show. If I move the target DIV outside of the Bootsrap column, the zoom controls do then show. I've tried setting heights and widths on various elements but nothing seems to trigger the appearance of the zoom controls.
Hello, Is there a way a to retreive the coordinates of the highlighted text in the viewer. We are listening to AdobeDC.View.Enum.PDFAnalyticsEvents.TEXT_COPY and we wantto get the coordinates of the copied text. The event parameter does not contain the coordinates details, is there a way like to execute a command and then get the coordinates of the highlighted text? Thanks,
Hello, Is there a way to refresh/reload the PDF Embed API Viewer rather than calling location.reload?We are rendering PDF and allow users to create annotations, If we detect changes from other users, we will then reload the pdf. Thanks,
I have an HTML file and I want to convert it to PDFand you allow to convert only ZIP files with html in it.When it will be an option to convert a single HTML file to PDF? Any assistance would be great.
Hi, I'm currently using PDF Embed API. I'd like to ask if there is a way to add annotations such as highlight, without confirming in the comment area every time, unless the user double clicks the highlighted annotation. Currently, every time user adds an annotation, the comment panel will switch on and user has to choose cancel or post. This can be quite tedious especially user need to use full screen to view the pdf, as after posting the annotation, user often has to manually close the comment panel.until next time it pops up again... Thanks.
Hello all, I am hoping to create a Power Automate flow to convert scanned PDF files into searchable PDFs. However, when creating the connector and adding Adobe as a condition, it asks for "File Content". Unfortunately there's no dynamic content available under File Content and it's a required field. Not sure how to proceed from here. Any thoughts? Thanks so much,
Hello, Is there a date estimation when will be deployed a version where we will be able to draw shapes and use stamps trough PDF Embed API?
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.