『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Questions
新着順
Hi all,I've created an account to be able to test some features of the API (As part of a Microsoft Power Automate workflow). However, I'm unable to sucessfully Get Credentials. On the desktop I'm met with:I've tried on my iPad too and met with a different, but also unsucessful message:Is there a step I'm missing or should I wait 24hrs and try again?Any help would be much appreciated.Thanks in advance!
Hi, I'm seeing today that this message pops up intermittently when opening a pdf with the embed pdf api."This application domain (...) is not authorized to use the provided PDF Embed API Client ID." I'm pretty sure it wasn't happening before today.
Hello! We have a Power Automate flow that was previously working fine, we were merging and creating 200-300 PDFs with no issue. Last week, we started running into issues so we reached out to Microsoft Support and they said that we should address this with Adobe on their forums, so here we are. Telemetry is below from Microsoft: Any help is appreciated!{ "method": "POST", "url": "https://power-apis-usgov001-sovereign.azure-apihub.us/apim/adobepdftools/shared-adobepdftools-2be80…, "backendResponseCode": 429, "responseCode": 429, "responseSize": 966, "cache": "none", "backendTime": 924, "requestSize": 535626, "apiId": "adobepdftools", "operationId": "CombinePDF", "productId": "ApiHub", "clientProtocol": "HTTP/1.1", "backendProtocol": "HTTP/1.1", "apiRevision": "1", "clientTlsVersion": "1.3", "clientTlsCipherSuite": "TLS_UNK0_WITH_AES_256_GCM_SHA384", "responseHeaders": { "x-ms-dlp-re": "-|-", "x-ms-dlp-gu": "-|-",
HiCan the free tier be used for production environments if we are oly sing less than 500 api calls per month? Before accessing these services, an account was created to log into developer console(https://developer.adobe.com/console) using enterprise email and the account type shows as Pesonal. This api is now used in power automate to merge pdf files. Thanks
Hello.I'm developing and testing an API that converts PDF files to JSON.It says 500 free requests per month, but I haven't used those 500 requests yet, and I'm getting the following message. message =Either quota for this operation is not available or Free Tier quota is exhausted. Please visit (www.adobe.com/go/pdftoolsapi_home) to start using Free Tier quota or (www.adobe.com/go/pdftoolsapi_err_quota) to upgrade to paid credentials., requestId = 18a497f0-74c1-4f95-8ee7-73731f77957e, httpStatusCode = 429, errorCode = Quota ExceededWhat is the 500 API usage threshold?I'd like to know how I can use it for development testing.
I'm trying to find pricing information for the Adobe PDF Services API. I've submitted a sales inquiry but haven't received a response yet. I understand there's a 500-document option available, and I'd like to know the cost for converting 2,000 PDF documents per month to docx using this service.Thanks for your helpRegards
I need more Adobe PDF Services API calls for a workflow in AWS, my team is counting on me and sales isn't responding.
If a PDF is already tagged, what happens when it is run through the Auto-tag API? Are they left unchanged, are they deleted and re-generated, or are they augmented?Is there a best practice for deleting existing tags before using Auto-tag? TYVM
Hi everyone,I’m using Adobe PDF Services API with NestJS to process scanned PDFs.My goal is to run OCR on the scanned file, then extract structured text and layout information for rendering in a Flutter frontend.However, I’ve noticed that sometimes the entire page is treated as one large image, and no text is extracted — even though the PDF clearly contains readable text after OCR.This causes layout issues in my Flutter app, where the image layer overlaps or replaces text.Implementation details const pollingURL = await pdfServices.submit({ job }); const pdfServicesResponse = await pdfServices.getJobResult({ pollingURL, resultType: OCRResult });Extract step:const params = new ExtractPDFParams({ elementsToExtract: [ExtractElementType.TEXT, ExtractElementType.TABLES], addCharInfo: true, getStylingInfo: true, elementsToExtractRenditions: [ ExtractRenditionsElementType.FIGURES, ExtractRenditionsElementType.TABLES, ], });! The issueFor some scanned PDFs, Adobe
I’m facing an issue reading text from the PDF using the Adobe's OCR API. Even after performing preprocessing through the API, the text remains unreadable. Could anyone please suggest how to extract or read text from P&ID symbols effectively?
I have a side project that allows users to do question-answering over their collection of pdfs. I'm using adove pdf APIs to extract the content of the pdf. I'm using adobe because it gives good structured output.Today I opened the billing page on my aws and seen that i have a bill of $3,400. I have 3,000 registered users on my tool and they may have uploaded 20,000 pdfs combined. So even in that case $3,400 bill for 20,000 pdf processing is too much.I seen the pricing of the service and it is somewhere around $1 per 100 pages. For other services adobe charge per 50 pages but for extract api it charges per 5 pages. Its not good. Adobe should lower their costs or charge as per 50 pages $0.05 just like their other APIs.
Is it possible to give the upload temp file url as input to the compression API. Getting a 500 error for that. Below is my code:- $ch = curl_init('https://pdf-services-ue1.adobe.io/operation/compresspdf');curl_setopt($ch, CURLOPT_POST, true);curl_setopt($ch, CURLOPT_HTTPHEADER, ['x-api-key: ' . $client_id,'Authorization: Bearer ' . $accessToken,]);curl_setopt($ch, CURLOPT_POSTFIELDS, ['file' => new CURLFile($upload['tmp_name'], 'application/pdf', $upload['name'])//temp file]);curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);curl_setopt($ch, CURLOPT_HEADER, true); // capture headerscurl_setopt($ch, CURLOPT_VERBOSE, true); // (optional) for debugging$response = curl_exec($ch);$header_size = curl_getinfo($ch, CURLINFO_HEADER_SIZE);$header = substr($response, 0, $header_size);$body = substr($response, $header_size);curl_close($ch);
Hello, Sorry if this is not in the right forum to voice this issue in, but to start off, I have been running a Power Automate Cloud flow using both the "Convert PDF to List of Images" and the "Convert PDF to Image" actions from the Adobe PDF Services Connector to turn a PDF into a PNG file.I've noticed that starting about 3 weeks ago the resulting PNG quality from the conversions have fallen. Fallen, as in the saturation level has been reduced in the PNG leaving colors looking darker, and the text is more pixelated in the PNG than in the original PDF. Has this happened to anyone else too, and has there been any fixes to this yet?
Hello everyone,i hope this is the right place to ask my specific question.As questioned long time ago on Community Board: https://community.adobe.com/t5/acrobat-services-api-discussions/math-equation-extraction-from-pdf/td-p/13033193 https://community.adobe.com/t5/acrobat-services-api-discussions/pdf-extract-api-math-image-extraction/td-p/14512088 the question is still ongoing. How to extract math formulars as separate image from a PDF.As example we can take Nr. 2 of the preceding question.In the Example Project i don't found my anwer: https://github.com/adobe/PDFServices.NET.SDK.Samples Perhaps there other solutions, or it is not now implemented as I expected ...Could anyone help me?
Hi Team,I’d like to understand how the Adobe Acrobat PDF Extract API identifies the structure of a PDF document.Does it rely on OCR-based detection, or does it use other layout or heuristic-based methods for identifying elements such as paragraphs, lists, tables, and headings?Could you please share some insights or documentation references about how the API determines and classifies these structural elements?Thanks,Sathish
Hi everyone, I client of mine wants to electronically seal PDFs in SharePoint.Their preference would be to use Power Automate with the Adobe PDF Services Connector and SwissSign as the TSP. According to the AATL List, SwissSign is supported (Adobe Approved Trust List Members, Acrobat) However, when using the PowerAutomate action to electronically seal a document, the TSP-Name dropdown only allows one of these choices:- ENTRUST- INTESI GROUP- GLOBAL SIGN- TRUST PRO How can we use SwissSign as the TSP with the PowerAutomate action? Thanks for any pointers!
Hi, I’ve been testing the PDF Services API (exportpdf operation) to convert PDFs into PowerPoint (PPTX), and I’ve run into an issue with fonts.In our PDFs, we’re using Roboto and Inter-Bold, and I’ve double-checked that they’re embedded in the PDF metadata. When I send the file through the API (tested with both the Node.js SDK pdfservices-node-sdk and the Python SDK, hitting pdf-services.adobe.io/operation/exportpdf), the output PPTX doesn’t keep those fonts. Instead, every text element defaults to Arial, and the spacing/layout looks off as well.I went through the API documentation and options but couldn’t find anything about controlling or overriding fonts. From what I can see, there aren’t any parameters exposed to handle this.Has anyone here run into the same problem? Is font preservation supported in PDF → PPTX conversions, or is it expected that custom fonts get replaced? Any guidance or workarounds would be super helpful — we need to preserve brand typography in client prese
The service has been working great most of the time but for this one attached PDF we cant process it. After about 90 seconds of polling every 3 seconds for the job status we get this: {"error"=>{"code"=>"REQUEST_TIMEOUT", "message"=>"The operation has timed out, please try after some time.;", "status"=>500}, "status"=>"failed"} Unfortunately this message doesn't tell us anything about what might be wrong with the extract or what to do. I also checked the console logs and it doesnt appear to actually log any of the PDF requests we have made, which is odd. I would have thought there would be a log of API requests with details. Anyway, anyone know why this PDF is causing issues?
We are trying out ”Adobe PDF services API”.Want to convert PDF to Docx format.We are evaluating ”Adobe PDF services API” for PDF to Docx format.We ran into some bugs, kindly help here to solve this:1. The table of contents are not navigable2. The Disclaimer icon in the first page is different3. The numbered tiles comes without number (for sub-titles like 3.1 / 3.2 etc)The source PDF and the corresponding docx are attached here.PDF --> TaggedPDF.pdf. (we tried tagging feature also)Docx --> docx-from-tagged-pdf.docx. (docx file generated after tagging.)Could you kindly help here to solve this.
Hi ,Whenever I am trying to create dynamic html to pdf. I am getting bad address error.Earliar it was working fine but now I am getting issue.Whenever I am doing download polling to asset I am getting bad address Error.{'error': {'code': 'BAD_ADDRESS', 'message': 'Bad Address, request terminated; requestId=xxxxxxxxxxxxxxxx', 'status': 400}, 'status': 'failed'}
Hi everyone, I'm trying to test the following "PDF to Markdown" operation. Specifically, I'm using the API as follows: curl --location 'https://pdf-services-ue1.adobe.io/operation/pdftomarkdown' \ --header 'X-API-Key: {KEY}' \ --header 'Authorization: Bearer {TOKEN}' \ --header 'Content-Type: application/json' \ --data '{ "assetID": "urn:aaid:AS:UE1:88b99474-afee-4d97-97e3-47de96ed6c06", "getfigures": true }'But I always get a 400 Band Request error with the following content:{ "error": { "code": "INVALID_REQUEST_FORMAT", "message": "Invalid request format." } }
Hi, I would like to extract English and Japanese text from tables in PDF, which is made by scanning printed paper. Original PDF:When I use Acrobat Pro DC(Convert to xlsx), the output quality is good. But when I use Adobe PDF Services API(extract_text_table_info_figures_tables_renditions_from_pdf.py), I get garbled text for the Japanesse text. I know the API is currently optimized for English language content. But is it possible to improve this API to the quality of Acrobat Pro DC?Beacuse I need to convert many PDFs, so I need CLI solution.I attach the original Excel and PDF file, so please use these as test data.Thank you.
How to Rotate a pdf while viewing it in PDF Embed APILike Clockwise, AntiClockwise or 180 degrees rotate. sample example is given below:
Hi,I'm using CreatePDFJob , to convert my pptx to pdf. My submitted job goes in hung state, and never responds.I have attached a pptx, which has only one slide, which is causing the issue. The slide has image, which I suspect is root cause.Please let me know how solve this issue.thanks
Hi there! I'm trying to get the Embed API set up on our site, but I'm running into some issues. It seems like it works the first time you open the page, but on reload, it disappears sometimes. I have it set up here: https://annescollege.fsu.edu/embed-testWhen I'm logged in to edit the site, it won't show, regardless of how many times I reload the page. We're using Drupal to manage the site. Also, when I'm viewing on an iPhone, it won't go full screen on both Chrome and Safari. Attaching screenshots of this issue. I'd appreciate any insight, thanks!
すでにアカウントをお持ちですか?ログイン
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
申し訳ございません。このファイルは、ダウンロードしても安全かどうか、内容を確認中です。数分後にもう一度お試しください。
申し訳ございませんが、当社のウイルススキャナは、このファイルをダウンロードすることは安全ではないと検出しました。