Unlock the full value of DC Web with our global community.
Recently active
I have a logic app setup for one of my Project, the point is to create 3-4 different contracts at the same time, while on the front-end UI, the user will have to wait for this process to finish to get to the next page.Now, on few occasion (not always), some of this "Convert Word to PDF" will fail randomly in one of the 4 contracts. And the error message is 502 Bad Gateway."innerError": { "error": { "code": "INTERNAL_SERVER_ERROR", "message": "Error occurred while processing the request; transactionId=1e395724-bc87-4f54-b418-b1ba900ff8d2" } }From the developer console Insight, I do not see any records of 502 cases.So, I am wondering what could be the cause, if anybody else has experienced this kind of issue before. Thank you.
Hello,I am using the "PDF Services Java SDK" (https://github.com/adobe/pdfservices-java-sdk-samples) to create a DOCX from a PDF document.It mostly works, but some elements are transformed to text automatically (OCR) when it shouldn't.For instance, we have a logo in the top left corner: And sometimes, Adobe Services API tries to use OCR on it, which results in garbage characters: Same goes for images of maps, which contain texts (texts, numbers) that the Adobe API messes up: In the API, I don't see any options to prevent OCR on some elements or even to prevent OCR altogether.The only option is the ability to pass a com.adobe.pdfservices.operation.pdfops.options.exportpdf.ExportPDFOptions objects, on which you can only set the preferred language for OCR:https://opensource.adobe.com/pdfservices-java-sdk-samples/apidocs/latest/index.html?com/adobe/pdfservices/operation/pdfops/options/exportpdf/ExportPDFOptions.html Is there any way to prevent this behaviour
Hi, We're currently using the PDF Services API, it's however unclear what will happen if we reach 1000 units.Those 1000 were given as a free trail when subscribing. Where can I provide credit card data? Will the API continue working after we reach that 'magical' number? Thank you!
I have this code:MemoryStream ms = new MemoryStream(file);FileRef sourceFileRef = FileRef.CreateFromStream(ms, ExportPDFOperation.SupportedSourceFormat.PDF.GetMediaType());ExportPDFToImagesOperation exportPDFToImagesOperation = ExportPDFToImagesOperation.CreateNew(ExportPDFToImagesTargetFormat.PNG);exportPDFToImagesOperation.SetInput(sourceFileRef);// Execute the operation.List<FileRef> result = exportPDFToImagesOperation.Execute(executionContext); It works perfectly except it writes all these images to the temp directory. I'd like to avoid that overhead. Is there any way to do this using a MemoryStream?
Hello,I am a new user of the Adobe Sign connector in Power Automate.We have a flow that creates an agreement from a SharePoint library template and sends it for an internal signature.When the signed PDF is returned, the flow files it in the SharePoint library.The flow then emails a copy of the signed PDF agreement to an external party for review and approval (their signature on the document is not needed; they simply respond to the email with their approval).Here is the issue:The signed PDF document created by Adobe Sign connector contains the agreement on page one, and an audit report on page two.We don't want to expose this audit report to an external party.Is there a way to supress that report in the flow using the Adobe Sign connector?Thanks in advance for your help!R
I would like to know whether 'Empty Project' using 'Acrobat Services API' do require an approval like 'Templated Project' or not? Looking forward to answer.
Hey friends, a quick note about some Document Generation updates. I'm planning a blog post on this soonish with deeper detail, but here's the TLDR: 1) You can now pass tables in HTML strings: https://developer.adobe.com/document-services/docs/overview/document-generation-api/templatetags/#insert-table-using-table-html-element 2) You can dynamically hide table rows: https://developer.adobe.com/document-services/docs/overview/document-generation-api/complextableconstructs/#dynamic-table-rows 3) Conditions in table cells now work, but require a bit more code. Details here: https://developer.adobe.com/document-services/docs/overview/document-generation-api/complextableconstructs/#conditions-inside-tables Enjoy!
Hello, I'm using adobe api package for python for research, and I reached to the 1000 free api calls limit.I try to subscribe to pay for more api calls but I can't find a way to do it.I'll be happy for your help
Hi there, Our application uses Adobe's PDF Extract API to process documents for business customers. We need to be able to assure our customers that their data is not at risk of being leaked or accessed inappropriately. Could you please tell me what happens to the documents uploaded to this API? Are they stored for any length of time after being uploaded? Cheers,Brad
Hi, I've encountered this error when using annotationManager.addAnnotations(xxx); It was working for some time. then suddenly this error shows up.
when I am trying to upload an asset in step 2 of document generation , I am getting error{"error":{"code":"Bad Request","message":"The request is missing required parameters, or the values are incorrect."}}. It works perfectly only with 'application/pdf' but I need to upload 'docx' file for template. How can I upload the word template in the "process of document generation using the word template and json input data for tempalte"? Thanks,
Trying to use the Split PDF component to split multi-page documents into 1 document per page. I.e. a 20 page file becomes 20 1 page files. For the Split PDF component in Power Automate, what does the Split Configuration Input expect? I checked the documentation but didn't see an explanation Also, there is an input for the output "PDF FIle name", but where does the output get created, into the same source directory as the input?
I am trying to split a PDF based on a site code. I have come across this guide leveraging Adobe PDF Extract services however I can't get it to work based on our Site Code utilising the sample PDF file works but what I would like to do is filter the array based on text. For my use case, I have a document that contains 3000 pages. I would like to build a flow that checks each page for the Site Description which is in this format: "Site A (Support)"; and which will split the PDF's into categories based on what's in the bracket so in the example above it would be 'Support'. When I set my array to 'Text' and set it to 'Contains' and 'Support' or '(Support)'. I get an error message saying the following: Failed: 'The template language function 'contains' expects its first argument 'collection' to be a dictionary (object), an array or a string. The provided value is of type 'Null'.'. Any guidance would be appreciated on how I can search for particular categories such as 'Su
As an FYI, there is an excellent JSON Path extension for VSC, https://marketplace.visualstudio.com/items?itemName=davidmarek.jsonpath-extract. I just used it on a structuredData.json result with "$.elements[*].Text" as a path and it nicely returned all the Text elements. Just FYI.
If I intend to use the PDF Embed API as a paid service in my application solely, do I need to purchase a license for commercial use?
Hi!I am using the PDF embed API on a website and have noticed some odd behaviour on at least one of the pages were I am using it.Whenever somone goes to the page, apparently the PDF content doesn't load. But if yo then refresh the page it not loads the content correctly.Have I messed up something or am I missing something? Very open to suggestions here.The page is at: https://www.kd.dk/idepolitik/
Hi! I am extracting pdf with the following code: extract_pdf_options: ExtractPDFOptions = ExtractPDFOptions.builder() \ .with_elements_to_extract([ExtractElementType.TEXT, ExtractElementType.TABLES]) \ .with_elements_to_extract_renditions([ExtractRenditionsElementType.TABLES, ExtractRenditionsElementType.FIGURES]) \ .with_table_structure_format(TableStructureType.CSV) \ .build() All table elements have a filePaths list, with a .csv followed by a .png.Is this order consistent? Can I rely on the fact that the .csv will always be at postion 0? Thanks in advance,Giovanni
Hi,I'm currently developing a React Typescript website for reviewing and sorting PDFs. To display the PDFs I use the embed api.Unfortunately I always get a message that my domain is not authorized. But this is not true. I have registered the domain that leads to the UI. The PDFs are provided via API but given via a FilePromise of the Adobe API to display. What could be the reason for this? After several times recreate the client security code times it works for a few minutes / hours and then again not at all.Are there any official Typescript-React examples? But since it works every now and then, the logic should be correct?Thanks for your helpTranslated with www.DeepL.com/Translator (free version) Best Regards SDK implementation:/* Copyright 2020 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,
Is there any API available to compare PDF files or any other approach to compare pdf using Acrobat API. we are trying to automate PDF file comparision using RPA tool, instead of going to UI method, we would like to know any pdf comparison API available which can be used in RPA tool.
Hi there, I am using PDF Embed API and I need to store a reference to each annotation in a document inside my database. It appears to me that the ids used to reference annotations change each time a pdf is opened with this API. Is there a way to keep these IDs static, or is there some other way to accomplish my goal? Thanks.
Hi, the bounding box for text comments behaves a little odd, if the displayed page is rotated 90 degrees. The boundingbox itself is rendered correctly, but the text gets cut off or line breaks are inserted at the wrong places. It seems like the width and height of the bounding box are swapped.
I have a pdf file that is 371 pages of images, I need to split the file so that it is more manageable. I can read the Azure Blob in but when I pass it to split I recieve a error. What uses the support chunked transfer mode to pass to your services? Unable to process template language expressions in action 'Split_PDF_2' inputs at line '0' and column '0': 'The template language function 'body' cannot be used when the referenced action outputs body has large aggregated partial content. Actions with large aggregated partial content can only be referenced by actions that support chunked transfer mode.'.
Hi, I have recently updated the embed API in my pdf viewer. and it seems to be have a annotation rendering issue. I save the annotation added to a database and when the pdf renders, I use the annotationManager to load the annotation and render it into the pdf viewer. and this happens: the annotation is supposed to surround the entire line instead it is just showing half of it.
Hi,We have taken AWS services. I would like to know how can we extract specific pages from PDF using Extract API.
Through 12/18/22 all of my photos are in Organizer 2023. Then I opened Organizer 2020 by mistake and imported all photos from 12/19/22 through 1/31/23 (and added tags and captions). How do I move the 12/19 thru 1/31 photos from Organizer 2020 to Organizer 2023?
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.