Unlock the full value of DC Web with our global community.
Recently active
First Scenario:1. We open a pdf(with acro fields) on the PDF Embed Viewer,2. Add some annotations using the UI.3. We saved the annotations on our database as a json format.4. If we open again this document we load the annotations from the database using annotationManager api5. Everything works fine. Second Scenario:1. We opened the same pdf on Scenario 12. Fill some data on some fields (or trigger some ui functions to update the pdf content)3. Saved the pdf4. Reopen the PDF 5. Annotations are not loaded , we are getting errors "Invalid value of Annotations" and "Annotation not found for given id".
What is the format for sending the adobe extract post? I've gone through the documentation for the extract API(https://documentcloud.adobe.com/document-services/index.html#post-extractPDF) and tried to implement the request in Postman, but everytime I'm getting a HTTP 500 error. Can anyone help me figure out what is wrong with my API call. Thanks.This is the cURL command I'm using. curl --location --request POST 'https://cpf-ue1.adobe.io/ops/:create' \ --header 'Accept: application/json, text/plain, /' \ --header 'Authorization: Bearer {token}' \ --header 'x-api-key: {api-key}' \ --header 'Prefer: respond-async,wait=0' \ --form 'contentAnalyzerRequests="{ \"cpf:engine\": { \"repo:assetId\": \"urn:aaid:cpf:58af6e2c-1f0c-400d-9188-078000185695\" }, \"cpf:inputs\": { \"documentIn\": { \"cpf:location\": \"fileInput1\", \"dc:format\": \"application/pdf\" }, \"params\": { \"cpf:inline\": { \"
Earlier this month we released an update to the Document Generation API. This updates adds new table options, new styling features, and support for SVG images. You can read more about this at our blog post here: https://medium.com/adobetech/unpacking-the-october-2021-release-adobe-document-services-58b8428860d4 Let me know if you've got any questions!
For Adobe Embedded API, is it possible to create overlay item on top of page? We are trying to create spotlight view for a page, the spotlight changes when the mouse moves, so only a small section of the page is visible. See attached the screenshot.
As the title says. If I on pdf initialization, added a new annotation (loaded from json saved before) via the annotationManager this will trigger the save button and will show Edited -- (Save button) in the header. I was wondering if there's a way to avoid this behaivor and just show the annotation, without disabling the user ability to add/remove new annotations, and showing the save button only on user actions/events.
I'm looking for an open source PDF custom viewer for our web application along with the capability of saving PDF with annotations. I'm glad to found the solution (Though its cloud based) from the leader. With 2 days of knowledge from your documentation and other posts, I'm posting my observations and questions: View SDK is free to use. This is mentioned in blog and forum posts. But if it mentioned clearly in documentation page, whats free and whats not then it will be very helpful.View SDK is free now. Its great but will it remain same in future ?Free View SDK includes annotation tools and callback APIs (Like save, user profile etc...) ?We understand from the exisitng posts in forum that you are collecting events information for analytics. We are OK that you are NOT collecting any user related/generated information. But whats the need of collecting our app URL (externalUserId in post body of https://dc-api.adobe.io/system/log)As per posts in the forum, lot of new changes/enhanceme
Hi, I am using PDF Embed API for the web application wanted to get control of the Delete Action of the Annotation.Why I would need this is listed below:Imagine I am logged in as a User called "Amit" and added some annotation, this annotated value is stored in my local collection and logged out of the application.The user called "Akash" logged in and see that the annotation is added to the PDF and he try to delete the annotation what "Amit" has added using the Delete Option in the Drop Down.I wanted to have control over the Delete Action before the Annotation is actually deleted.I am listening to the Event Listener as adobeDCView.registerCallback( AdobeDC.View.Enum.CallbackType.EVENT_LISTENER, function(event) { console.log(event.type, event.data)  
In the attached PDF, the text section (starting of the page): "This is a promotional meeting organised and funded by the Testers Alliance intended for healthcare professionals based in the UK. Prescribing and adverse event reporting information for (quixaban) can be found here. For moreinformation on BITIQUIS, please visit www.bitiquis.co.uk"is extracted as a part of an image in the Extract API. Currently using the code in the awesome repo containing code samples: src/extractpdf/extract-text-table-info-with-figures-tables-renditions-from-pdf.js Attaching the image extracted as well. Is there a way the text section can be represented as text correctly? Thanks!
I'm wondering if it is possible to add additional actions in toolbar for PDF embedded API preview? In addition to annotation, download and print, we would like to add some function which is specific to our business need, such as share document which launches our share popup screen. Does the PDF embedded API have the ability to allow adding such actions in tool bar?
I am using trial version of Adobe pdf connector for merging PDFs, This action has Preview lable, what does Preview stands for? In future will there be any change in this action, if yes, what may be the impact even after having subscription?
I'm creating a pdf using a HTML file and the API always gives me a PDF with header and footer, even setting the option to not include header and footer.The API was working fine about a 3 months ago, but now i'm having this problem, any solution or explanation would help, thankspageLayout.setPageSize(16, 9); CreatePDFOptions htmlToPdfOptions = CreatePDFOptions.htmlOptionsBuilder() .includeHeaderFooter(false) .withPageLayout(pageLayout) .build(); htmlToPDFOperation.setOptions(htmlToPdfOptions);
Our existing code generates the annotation data as xfdf string, is there a way to pass the xfdf to previewFile API?
We integrated the Adobe PDF Embed API PDF Viewer into our web application and during testing found out that the viewer takes very long to render PDFs created by iOS Quartz PDFContext. If it takes longer than a minute we get an error message "File preview error. File preview not available, please reload to try again.". The problem can be reproduced in the demo viewer at https://documentcloud.adobe.com/view-sdk-demo/index.html#/customize/LIGHT_BOX, so it is not a problem of our integration. In Adobe Acrobat Reader the files are displayed within an instant. Attached is one example file which takes around one minute in the demo viewer, so sometimes it is rendered and sometimes not. What is wrong with the file? Or did we find a bug in the viewer?
Hi, We have a problem when we trying to create a credential for the PDF Services API. We getting an Internal Server Error message and we can't download the private key file. There are some informations in the browser's log:...- Generating personalized code samples- Creating Credentials (index.js:60)- Failed to load resource: the server responded with a status of 500 (Internal Server Error) (viewlicense.adobe.io/viewsdklicense/integration/servicessdk:1)...After when we check the Projects in the Adobe Developer Console we have this generated project.When we try to register PDF Services API at the AWS Marketplace this is the problem.How I can solve it?Thanks!
I have used Adobe PDF services connector in Power automate.Used Convert PDF to Word API.Output word document is not converted into correct format if PDF has column layout or images.
Hi,We are trying to use Adobe PDF Embed API to open PDF file in our web application. We have code like this:this.adobeDCView = new window.AdobeDC.View(config);/* Invoke the file preview API on Adobe DC View object */ this.adobeDCView.previewFile({ /* Pass information on how to access the file */ content: { /* Location of file where it is hosted */ promise: Promise.resolve(buffer),...buffer is the ArrayBuffer for the PDF file, we used to use PSPDFKit which takes the same arrayBuffer and load the file without problem.But when we swtiched to Adobe PDF Embed API, the screen first load with spinning wheel "Opening document 100%", after quite time, it shows error:"File preview error". On the console, it shows:core.js:6241 ERROR Error: Uncaught (in promise): Object: {"code":"PREVIEW_RENDERING_FAILED"}at resolvePromise (zone-evergreen.js:798) [angular]at resolvePromise (zone-evergreen.js:750) [angular]at polyfills.js:11394:21 [angular]at Object.onInvokeTask (core.js
Hello everyone, I am working on writing a Python code for converting PDF to HTML and vise-versa. I have two questions:Is there any Adobe API enabling PDF to HTML conversion? if not, would you know any alternative? thank you.I am trying to write a Python code that creates PDF from HTML. using the instructions in this link. I've seen that Adobe PDF services API requires the HTML entry file to be zipped. how does this work? should I save the HTML page with its complementary content and zip the all, or save just the HTML of the input web page? thank you.I am trying to write a Python code that creates PDF from HTML. using the instructions in this link. But I strugle with how to precise/adapt the value of the JSON field within "cpf:inputs > params > cpf:inline" of form parameters, containing this value: <script src='./json.js' type='text/javascript'></script> I noticed that it was said that: In case of dynamic HTML this API allows you
Hi, We have recevied inovice from AWS for 13000 units for the month of August 2021 in Adobe PDF Services API registered at AWS Marketplace. But for the month of September 2021, we have consumed only 100 units. We would like to validate the 13000 units utilized in August month. Can anyone help us how to validate the same. Thanks in advance
I would like to have a link on our website to open a using PDF Embed API. And when it opens on the screen I would like to tell them something in an alert/popup is that possible?And if that is possible can you add links to do something like take them to a specific page in the pdf? Or can you set it to navigate to a specific page when they close the alert?
I'm using the PDF Embed API to add a PDF to my site. My PDF document has multiple layers which can be toggled on or off when viewed in Adobe Acrobat. I want to maintain/enable this functionality when using the Embed API, but the layer panel does not appear on the left-hand pane. How can I activate this feature? It's the basic implementation, but just in case, here is my current code (with my information removed):<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: "my-client-id", divId: "adobe-dc-view"});adobeDCView.previewFile({content:{location: {url: "https://www.my-domain.com/file-path/document.pdf"}},metaData:{fileName: "file-name"}}, {showAnnotationTools: false, showPageControls: false, showDownloadPDF: false, showPrintPDF: false});});</script>
I would like to trigger the PDF to print when it is opened. So for example, if I used the lightbox version and the link is clicked to open it is it then possible to trigger the print button to also be triggered?
Hello everyone,I am working on writing a Python code for converting PDF to HTML and vise-versa.I have two questions:Does Adobe PDF services enable converting a PDF to an HTML file? if yes, could you please pass me the link if you have it. In fact I don't find the related link. Thank you!I am trying to write a code that creates PDF from HTML. using the instructions in this link (https://documentcloud.adobe.com/document-services/index.html#post-createPDF). but I strugle with how to precise the JSON field within "cpf:inputs > params > cpf:inline" of form parameters, containing this value: <script src='./json.js' type='text/javascript'></script> I noticed that it was said that: "In case of dynamic HTML this API allows you to capture the users unique data entries and then save it as PDF. Collected data is stored in a JSON file, and the source HTML file must include <script src='./json
So, I followed all the instructions that Adobe gave for converting html to pdf. I have tried on every internet browser. But the following examples will be from Chrome: Result A) One page with NOTHING on it.Result B) no images but the words of the page are focused on the left and run all over each other.Result C) I tried to do Create->Web Page from the adobe itself. If it isn't Result A or B, it is nothing. Adobe will sometimes refuse to do it because of font issues? It's Times New Roman... Honestly, I have tried from the extensions, I have tried from Chrome itself. The only reason I wanted Adobe Pro was because of this feature. I am trying to take my digital E-portfolio from my MLIS and make a pdf copy. I honestly don't know what to do. The only thing I have been able to do is save it as a html file copy (from the website itself). I haven't been able to do anything with Adobe. I tried to contact Adobe, but they told me to go to my "Group," to wh
Hello, Highlighted portions in the above section of the PDF are vectors - found in Acrobat's Preflight tool.Is there any way using which the vector information can be extracted? Thanks!
Hi,This happens to me when i try to reach my viewer page in another way. the standard way with the same file works and i can't seem to find the problem. BTW, no cleanup is needed because it's the first viewed pdf.Uncaught Error: Invalid content information is provided. at ValidationService._validateFileInfoContent (VM11047 ViewSDKInterface.js:1) at ValidationService.validateFileInfo (VM11047 ViewSDKInterface.js:1) at EmbedModeHandlerService._getFinalFileInfo (VM11047 ViewSDKInterface.js:1) at EmbedModeHandlerService.initialiseAction (VM11047 ViewSDKInterface.js:1) at ViewSDKInterfaceApp.previewFile (VM11047 ViewSDKInterface.js:1) at View.previewFile (VM11047 ViewSDKInterface.js:1) at index.b84afd08cc2cf893a2ff.js?v=2:2 at HTMLDocument.<anonymous> (index.b84afd08cc2cf893a2ff.js?v=2:2) at Module.Vu6y (VM11047 ViewSDKInterface.js:1) at __webpack_require__ (VM11047 ViewSDKInterface.js:1)
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.