Unlock the full value of DC Web with our global community.
Recently active
const previewConfig = {embedMode: "FULL_WINDOW", locale: "zh-CN"} document.addEventListener("adobe_dc_view_sdk.ready", function () {var adobeDCView = new AdobeDC.View({clientId: "my clientid", divId: "adobe-dc-view"});var previewFilePromise= adobeDCView.previewFile({content: {location: {url: url}},metaData: {fileName: "Bodea Brochure.pdf"}}, previewConfig); but the page tools not in chinse, it always in english.By the way, is this usage free of charge? As long as it is an online calling method, regardless of what content is being operated on and how many users are accessing it
PDF searching does not work, and there is an infinite "Loading.." "Searching".., with no progress made. there are no errors in the javascript console..
Hi,I'm getting the following errors :'Uncaught TypeError: Cannot read properties of undefined (reading 'length')' Steps to reprodue :- on the embedded pdf viewer open the pdf and select a portion of text- click Save- on mouse hover over the selected text, console prints the above message On further investigating, this is happening when _validateMinLength(propertyName, obj, minLength) in AnnotationValidatoeUtil.js file is trying to valide the minimum lenght of the object.source which is comming as undefined Any suggestion, how to solve this ? This happens when we save the annotations. We are using Adobe Embed API to embed the pdf reader in our application.Using the SAVE_API, we save the annotations of the pdf to our database.Inside that we use getAnnotations to fetch the current annotations to be saved(this is where the error is coming) Below is the code:this.adobeDCView.registerCallback( window.AdobeDC.View.Enum.CallbackType.SAVE_API, async fun
Hello, I am using the PDF Embed API. When encountering a PDF without editing permissions, is it possible to open editing permissions by entering a password?
Hi,I want to be able to silently add annotations with out disturbing the user's workflow. Is there a way to not select an annotation when added using the addAnniotation method.The update and delete methods work how I expect just not the add function. Thanks
removed
Hi team,First let me say that this product from Adobe Corp is what we have been looking for many years now, and we are very happy to see it is now released with a core set of features, including annotation of interactive pdf files. My team have done some proof of concept of integration, but I am reluctant to add that to a production platform for several reasons : 1/ Unlike Adobe PDF Services API , it is a free product without clear SLA, a licence that is not really compatible with professional services.2/ As far as I know, it is not possible to fix API version, and thus our integration car be broken at any time without notice.3/ There is no visibility on major bug fixes such as callbacks no longer been fired.So, it this API ready for production level or is this still a preview or beta ?Thanks,ChristopheCTO / Afluens
Hello i have been using the Adobe PDF Embed API for over a year at this point and the problem that i'm facing is that the tool is unable to load certain PDFs after the recent update on July 15th when users started noticing the issue.The tool tries to load the file but it ultimately ends up with a blank screen or a plugin crash icon and throws up {code: 'PREVIEW_RENDERING_FAILED'} This issue is consistent between different browsers (Firefox, Chrome, Edge) and seems to be inconsistent across different files some load other don't with a more pronounced occurrence when dealing with complex drawings. It's worth noting that the affected PDF files are not signed, and they lack any special metadata or annotations. Despite these files being relatively straightforward, the embedding tool fails to load them consistently. I have replicated this error using the official sample repository provided by Adobe: https://github.com/adobe/pdf-embed-api-samples. Specifically, I am loadi
My company is looking into the Adobe PDF service connector for Microsoft Power Automate. They are concerned that Adobe will be sent information/data when the connector is used. Can someone please explain, in the most basic terms possible, how this connector interacts with Power Automate and Adobe; so that it can be explained to our decision makers? They are requesting this information as well as any architecture documentation on the connector.
Hi,I am looking to use the PDF Extract API to extract text for pdfs. The json output that is returned is very granular. That is helpful because it allows us to remove noisely text that doesn't have much meaning but it also means that text that should be grouped together for reading is not. For example, a list of items is seperated into one element per item. I am wondering if parsing this into meaningful text is something other have already solved or if I need to start from scratch. Are there any libraries that do this or scripts that folks have written? Thanks!
How to filtered agreements by specific status (Ex: OUT_FOR_SIGNATURE or SIGNED) in REST API?Currentlly there is no specific query parameter to use to achive this requirement in GET /agreements.
I am attempting to use PDF Services Document Generation Module via Adobe Fusion. No matter what value I place into the Data for Merge parameter I cannot get the JSON object to work. I have tried as a string, and as a Collection, I have tried as a single param and a mapped param. No combination seems to work. I'm just looking for someone who has gotten this to work before. I can put in hard-coded individual values and get it to work but that is not very useful when I have many documents each with a unique structure, I don't want to have to set up a single module for every file we have. Any guidance would be great, thanks!
Are there any Power Automate Actions for the SEAL API? I don't see under the PDF Services connector.
I want to inquire about the quotation of PDF Service API, but no one responded when I contacted the official website, found the email amohssen@adobe.com in the forum, and sent an email. Is no one aware of Adobe's quotation?
we have created credentials (server to server authentication) as per te documentation and generated access token using rest api.When trying to generate upload presigned URI using rest api https://pdf-services-ue1.adobe.io/assets using api key generated in credentials we are getting forbidden error http errocode 403 (error code: 403003) Clientid Id is invalid
After displaying the pdf using adobeDCView.previewFile API. Can I then convert it as a blob and make a post to the back end?
Am I assured that, if I set my Service Region to Europe, the whole computing and data storage is done on the AWS data centers in Ireland only? Here are some references saying that but I would like to have a confirmation as data security and RGPD are important considerations for our customers.White paper explains that " stored content is synchronously and automatically replicated to other data center facilities within that customer’s region so that data integrity is maintained even with the loss of data in two locations. [...] For users with a Europe or Africa country code, storage is in Dublin, Ireland."Documentation SDK implementation
Hi Community, when embedding the editor and working with profiles (e.g. for Commenting), will the profile be send to Adobe? Does anybody know where the Adobe Document Services are hosted?Background: As far as i know, it's not allowed to send user-related information to non-chinese servers.Are specific Adobe Servers available for this Usecase? Best regards, Sebastian
Hi,I am a newbie to Adobe Extract API.I am trying to use the extract API in postman. For this, I have downloaded the postman collection file from the URL: https://documentcloud.adobe.com/document-services/index.htmlNow, I am trying to replace the variables in the file, such as client_id, client_secret, etc.I have the client id and client secret but unable to get the following variables "Signed JWT", "Bearer token" and "x-request-id".Request you to let me know the steps to generate these variable values.
Issue:I'm currently working on a project where I need to obtain bounding boxes for different components in a PDF, such as images, tables, and text. To do this, I'm using the "Bounds" and "ClipBounds" attributes for all elements, as well as the "BBox" attribute for images and tables. My goal is to map these coordinates to pixel format because I need to use them on PDF pages that have been converted to images. To achieve this, I'm using the following normalization code:, y, w, h = int(x*img.size[0]/width), int(y*img.size[1]/height), int(w*img.size[0]/width), int(h*img.size[1]/height)where img.size is the size of the PDF page converted to an image and width and height are the page dimensions according to the API output.Actual BehaviourThis technique works for some PDFs, but it doesn't work for others. In some cases, I get neat bounding boxes using both "Bounds" and "BBox", while in other cases, I only get correct results using "Bounds" and not "BBox". There are also instances where both "
I want to convert a PDF file into text using the service API with windows bat.I want to know the URL of ADOBE_API_ENDPOINT in curl statement.
I want to convert the Excel to PDF . But I want to retain my fonts from the Excel.Currently I am trying tio use nodejs sdk but its not providing the appropriate result .Following the https://github.com/adobe/pdfservices-node-sdk-samplesI have provided the input , output I have received and output I am expecting to be : even in the provided expected output I can't able to replicate the fonts
I have seen several posts about this topic, but none have a resolution. Other than filling out this form for a 3rd time (https://developer.adobe.com/document-services/pricing/contact/sales/), is there a method anyone has successfuly used to switch from the free plan to the Enterprise plan?
{"error": {"code": "CORRUPT_DOCUMENT","message": "The input file appears to be corrupted and cannot be processed.; requestId=d47a25d3-3182-4246-9c7e-34edaae80696"}}
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.