Questions
Als letztes aktiv
Basic implementation (including in the SDK demo) throws console errors that are actually affecting customizations: https://acrobatservices.adobe.com/view-sdk-demo/index.html#/view/FULL_WINDOW/Bodea%20Brochure.pdf Uncaught (in promise) Error: No callback registered by viewer for GET_FEATURE_FLAG: There are numerous errors following. As a result, functionality that has worked for over a year (such as programatically open the annotations pane) is now not functioning and I've had to delay shipping a new feature for over a month as a result. Multiple people have posted about this and Adobe has not even suggested they're aware of it. With no API versioning, users have to just pray Adobe doesn't include breaking changes into the PDF Embed API. Unfortunately, it seems to happen pretty consistently. WHEN will this be fixed? I built on top of this API because it has excellent features. But the instability is so concerning that I never would have u
We have developed a routine using the API that regularly generates images from PDFs for us. In the process, we use the “Webhook Notification” to then download the asset. However, the Adobe API is not sending the webhook.A bug? Has anyone else noticed this?
I have reached out to our Account Manager, Justin Tyagi a week ago and have yet to receive a response. I've been through numerous support chats and phone calls, and am getting pointed in all sorts of directions. I have yet to figure out why I can't purchase this license for one of our customers. How can I get help with this from someone who understands this? Thank you.
Hello, Is the document rendered using the PDF Embedded API uploaded to Adobe Cloud Storage or transmitted outside our company boundaries? Our requirement is that the document must not be uploaded or sent outside our organization’s infrastructure. Can you confirm how the PDF Embedded API handles document data in this regard?
The PDF extract API extracts info of different elements from a pdf an forms a JSON for it. Is there a reverse API available, which accepts the JSON in the same format as extracted above and creates a PDF using it? I am trying to replace the original text with a different text here. If not, how to create a pdf from the JSON available.
Hello I'm using this operation to convert my pdf to image : https://developer.adobe.com/document-services/docs/apis/#tag/PDF-To-ImagesThe operation works, but the resulting image quality is very low, and there is no option to control the compression level in the API body. Do you have any ideas on how to disable compression for this operation?
Hi everyone,I’m wondering if there’s any possibility of having a pay as you go or scaled pricing model for the Extract API service. I’ve come across threads discussing this topic from two or more years ago, but it seems there have been no updates so far.A flexible pricing model would make the Extract API more accessible, especially for startups, small companies, and solo entrepreneurs. Many of us would be happy to eventually pay the $25K annual fee—if we could grow into it as our usage and business expand.Has anyone heard if Adobe is considering this option?
What does the Auto-tag API do in terms of generating bookmarks? It seems that some PDFs produce bookmarks based on the structure, and some don't. In Acrobat, there is an ability to generate bookmarks based on the structure, but you are required to select the structure elements to be used. The API doesn't provide a way to specify these structures. Thanks.
I exhuasted my quota of 500 document transactions with the Adobe extract API. What is timeline for the 500 quota to renew on free tier? I created Acrobat Services account and started using API on approx April 18th and now it's May 18th. Do I have access to a new batch of 500 tranactions on May 19th or does it renew by calendar month, i.e., June 1?
Dear Team,I hope this message finds you well.We are exploring options to integrate PDF generation and e-signature capabilities into our custom CRM. Our use case involves generating rate confirmation documents and sending them directly to carriers and shippers for review and signature through our system.Could you please provide the following information regarding your API services:Availability of API access for:Secure e-signature workflowsPricing details for API usage is it monthly or pay-per-use.Limitations or volume caps for free or entry-level plans.Whether your platform supports embedding into a third-party CRM system.Documentation or a link to your API reference portal.We are currently considering solutions that allow smooth automation and legal compliance for document handling in the logistics industry.Looking forward to your response. Regards,Avi Singh
I am trying to find licesing cost for Adobe PDF Services API. I have tried submitting sales inquiry, but no response yet. I know there is 500 documents options, I am interested in knowing how much it costs if I want to use this servcie for 2000 documents conversiions from PDF to Excel. Appreciate someone from PDF support team promptly responds to this.@Pdf services API, @47540 and Licensing#PDFServicesAPI#SalesAndLicesing
HI, i'm working on this chat with pdf tool called ChatPDF.so and i am wondering can i change the output format of the pdf api into markdown format?The output format of acrobat pdf api is not suitable for LLM applications like chat pdf. I tried converting the output programmatically but this task is so complex that i gave up.It would be cool if pdf api can combine seperate excel files and image files into one single markdown file for each pdf page.If there should be an inbuilt option to get output as markdown then it would be greatly helpful for ai chat pdf applications.There is service from Mathpix that does it but i find acrobat pdf api to be better in OCR.Any advice?
Hi, I embed with Adobe API a PDF doc and all text is in English and I would like to see it in Portuguese. Thank you for any help.JMRuas
Hello.We have Excel spreadsheets with UK dates (dd/mm/yyyy).When I convert them to PDF using the API the dates come back as US (mm/dd/yyyy).This is odd as any other 3rd party method does not convert dates, and surely Adobe shouldn't be modifying contents unless specified within the API.Our client will not accept dates in that format. I have changed the endpoint to EU (https://pdf-services-ew1.adobe.io ) as per the Regional Configuration setting to no benefit. We are on the free tier but notice the sentence in the API documentation "Once you purchase PDF Services API, its APIs can be configured to process the documents in a specified region that is listed below."I'm going to assume this is the issue when on the free tier. Any help will be most appreciated. RegardsAlistair
I have created a adobe java service to create a pdf from the excel file. The excel is having the correct number formatting for the german but when it is send for the pdf generation then the pdf is showing the number format as indian number system and not the german number system.public byte[] convertExcelToPdf(byte[] excelFile) throws Exception { try { // Create PDFServices instance using the injected credentials with EU region PDFServices pdfServices = new PDFServices(adobeCredentials); // Create a temporary file from the uploaded file File tempFile = createTempFile(excelFile); try { // Create PDF using Adobe PDF Services with European locale return createPdfFromFile(tempFile, pdfServices, adobeConfig.getRegion()); } finally { // Keep the temporary file for debugging - comment out the deletion if (tempFile.exists()) { tempFile.delete(); } } } catch (Exception
お世話になっております。 Acrobat Services APIの利用について質問です。【目的】 Google Apps ScriptからサーバーサイドでAPIを呼び出し、PDFの操作(最終的には画像のオーバーレイ)を行おうとしています。【問題】 認証情報を「OAuth Server-to-Server」方式で作成し、アクセストークンの取得には成功しました。しかし、そのトークンを使ってAPIの操作(/operation/pdfpropertiesや/operation/exportpdfなど)を呼び出すと、全ての操作で401 Unauthorizedエラーが返ってきてしまい、先に進めず困っています。【状況の詳細】認証方式: OAuth Server-to-ServerClient ID: 2b05087f477a4923a3d2aae596d0937a成功する処理: Client IDとClient Secretを使ったアクセストークンの取得。失敗する処理: 取得したアクセストークンを使った、全てのAPI操作(例: /operation/pdfproperties)。正確なエラーメッセージ: Code: 401, Response: {"error":{"code":"UNAUTHORIZED","message":"Not authorised to perform the operation."}}リクエストしているスコープ: pdf_services を含んでいます。試したこと: Free Tierの利用回数(500回/月)は超過していません。【質問】 以上の状況から、アクセストークン自体は取得できているものの、PDF操作を実行するための権限(Permission)が、作成した認証情報に付与されていないのではないかと考えています。これはアカウント側の設定や、何らかの制限によるものでしょうか?あるいは、他に確認すべき点があればご教示いただけますでしょうか。よろしくお願いいたします。
Hello Adobe Community 👋,I’m a final-year computer science student and recently completed a personal project — a PDF authenticity analyzer 🧪 — designed to detect signs of tampering or unauthorized edits in PDF documents.I tested it using two versions of the same file:✅ AI For Beginners.pdf (original)! AI For Beginners (Modified).pdf (manually altered using a PDF editor)🔍 The tool performs the following checks:🗓️️ Compares metadata (creation vs. modification dates)🔐 Identifies missing or invalid digital signatures🧠 Highlights font anomalies and misalignments⚠️ Detects unusual object layering or structure inside the PDF🛠️️ Tech Stack:Python with Flask (backend)PyMuPDF + pikepdf (for PDF analysis)Tailwind CSS (frontend) Goal:To create a lightweight, accessible, web-based tool for document authenticity verification — especially helpful in 🎓 education, 👔 HR, and ⚖️ legal environm
We want to build accessibility in PDF documents embedded in a website. In the View Document mode within our website, the screen reader such as NVDA is not able to read the contents of the document. Please suggest what do we need to do in order for the screen reader to read the contents of the PDF doc embedded within the Website and also identify any editable fields which may need to be filled in by the end user.
Hi Team, I am trying to redact and sanitize a PDF file where already redaction markups are already added using Adobe Acrobat pro Desktop application manually. Was wondering there is no endpoint mentioned anywhere in the documentation. Is this really supported in Adobe PDF API services. If yes, can you please suggest me the approach and some documentation around it. The only reason I want it via API is due to the use case here is to redact thousands of PDFs and API would be stable to proceed. Appreciate quick response and thanks in advance.
I am trying to convert a local html file to PDF through Adobe PDF Services' REST API.I have followed the steps at https://developer.adobe.com/document-services/docs/overview/pdf-services-api/gettingstarted/But I get stuck on Step 2 Section 2: Uploading the Asset, with an error from AWS: "No AWSAccessKey was presented." I can successfully retrieve the "uploadUri" with:curl -H "Authorization: Bearer {{ access_token }}" \ -H "X-api-key: {{ client_id }}" \ -H "Content-Type: application/json" \ -d "{\"mediaType\": \"application/zip\"}" \ -X POST https://pdf-services-ue1.adobe.io/assets But the following command always returns an error from AWS (see "aws_error.txt" attached)curl --location -g --request PUT {{ uploadUri }} \ -H "Content-Type: application/zip" \ --data-binary @8998938.zip I have also tried it setting the "mediaType" and "Content-Type" to "text/html" and using "--data-binary @8998938.html". The response was the same. Any help would be greatly appreci
Hello, we are planning to introduce PDF service API. Since we are in accounting, customer data management is important. We are a company located in Korea. If we use PDF Extract API or Adobe PDF Services API, please let us know where (country) the service is uploaded to. Also, after we upload and receive conversion information, does the data remain on the server or is it deleted from the server? If it remains, can we delete it immediately through API?
Here is our requirement to identify the right API. * Edit existing PDF. Basically to add text on designated placeholders.* and sign with signature image at the signature place holder. Looking for the suitable API compatible with React JS. Is it free or Paid? Thanks in advance!
Hi All, I have a few XFA PDF documents. Each of them has dynamic sub-forms and XML data. I'm trying to find a solution to combine them into one DPF. After combining them, it can be static content. The most important thing is to render XFA forms using templates and XML data (to have the same view as a user opens it using Acrobat Reader) and join the results from multiple documents into one. Can someone propose any solutions to deal with it?
I'm not a coder by any means but I'm trying to create an automated business process. I have the front end done, where a user uploads two documents, and the solution is to see the the difference on the numbers in a table contained on page 2 and update them. I created a solution using Python, but it would create an image rather than updating the individual field. This is a no goal for a legal document, as I need the actual field, updated similarly to how you would through Adobe Acrobat. Looking over some documentation and through ChatGPT, it seems Adobe API should be able to replace numbers on document one with the right ones from document two. I am a registered customer using PDF Services API with the DCAPI scope enabled. I can authenticate and use other endpoints (like Combine PDF, OCR, etc.) successfully as well. When I try, PDF Services API /operation/replace-text returns 415 Unsupported Media Type. My credentials are valid and recently used.I have trie
Using the [Merge PDFs] Powerautomate action to merge multiple PDF files into a single file all stored on a SharePoint site. When I do this, I get the Corrupt File error. Here are the relevant steps I'm using. 1. [Get items] (from SharePoint)---- [For Each] ----2. [Parse] (to get file path)3. [Get file content using path]4. [Append to array variable]--- Outside of [For Each] ----5. [Merge PDFs] <- Error occurs here I'm including a notepad file with the raw inputs into the 'Merge PDFs' action for reference. Any assistance in resolving this would be greatly appreciated.
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Sie haben bereits einen Account? Anmelden
Noch kein Konto? Konto erstellen
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.