Unlock the full value of DC Web with our global community.
Recently active
I'm running into issues embedded PDF documents hosted on adobe document cloud.The URL used is the share URL provided by document cloud. On initial load the document says "Opening Document 100%", however, the rendered content gives a "File Preview Error" and a reload button which cycles back through the same errors above. Is it not possible to render a PDF with the API that's hosted on adobe cloud? From Devtools:DevTools failed to load SourceMap: Could not load content for https://documentcloud.adobe.com/view-sdk/2.13.1_2.0.0-9ef32cc/private/dc-app-launcher.js.map: HTTP error: status code 403, net::ERR_HTTP_RESPONSE_CODE_FAILURE
Hi, I am by no means well versed in coding and have a rudimentary understanding of some very basic things that are needed to accomplish things on my website built through Squarespace. I tackle projects on a case by case basis and usually rely on all of the information available online to get something done. Today I attempted to embed a PDF file on my website. I finally figure out how to host the file on my website and copy the code from the Adobe PDF Embed API Demo, while replacing the Client ID, url & Filename in the code. The final result is that my file is rendering as blank space on the webpage on which I've tried to embed it. It says "Loading Document" and then loads as blank. How do I fix this? Here is the code I used: <div id="adobe-dc-view" style="width: 800px;"></div><script src="https://documentservices.adobe.com/view-sdk/viewer.js"></script><script type="text/javascript">document.addEventListener("adobe_dc_view_sdk.r
When open an editable PDF on Acrobat Ready, the font will be resized automatically if I type in more characters than the length of a field, so that the field could display all the characters. However, when I render the same PDF with PDF Embed API, the font auto sizing doesn't work. May I know is there a way to enable font auto sizing with PDD Embed API?
Google ChromeのAdobe Acrobat拡張機能をインストールした環境で日本語のPDFをブラウザ上で表示するとファイル名が文字化けします。拡張機能がインストールされていない環境では問題なく表示されます。例えば以下のようなWeb上に存在するURLでも再現可能です。https://faq.jpx.co.jp/disclo/tse/web/knowledge/7847/0/7 テスト登録用PDF.pdfこちらの原因と解決方法を教えて下さい。
What formula can be used to convert PDF user units into browser-compatible measurement units (for eg: pixels)? For eg: `TextDecorationThickness`'s value is in PDF user units, how should this be translated into pixels or any other browser compatible value?
For a use case we have, we are looking to use the Adobe Services API to generate a PDF off of a Word document that has placeholder variables in. Some of these variables will include what Adobe classifies as Prohibited data and in their Adobe Developer Additional Terms and conditions section 6.11 they explicitly mention that this cannot be include. But when looking at the use cases for this service (see the image below as well as here), all the examples included would include prohibited data. In a nutshell, can this service be used for prohibited data or not given that there is an ambiguity between what the service is advertised for vs the terms and conditions and surely many institutions are already using this service with prohibited data (for example banks and other financial institutions are sending out PDFs of statements with identifying information)?
Interested in using Adobe PDF Services API to generate some documents. There seems to be a contradiction between the example use cases (e.g. NDA creation, Legal Letters, etc.) and the Adobe Developer Terms of Use. The Adove Developer Terms of Use 6.11 places a limitation on data that can be transmitted, provided or otherwise made available to Adobe. This limitation applies to any data that would allow the identification of a specific natural person, but all the example use cases will likely be full of such data. Are these terms of use applicable in general and if not, how can the terms of use be satisfied while creating documents similar to the example use cases. I have been in contact with an account manager for months trying to find a resolution to the above, but they seem incapable of getting the required information. They confirm the terms are applicable to any license but need to know which license I'm interested in to determine a solution to the above (only making infor
When I extract the text from a PDF using Adobe's extraction tool, sometimes the resulting JSON includes extra spaces between words that were not present in the original PDF document. Orignal:Exracted Result:
While I noticed this on my own site (as referenced in an earlier post), it appears even in the demo on Adobe's own site. In-line embed mode for PDF Embed API no longer allows text to be highlighted, copied, or for links to clickable:https://documentservices.adobe.com/view-sdk-demo/index.html#/view/SIZED_CONTAINER/Bodea%20Brochure.pdfTrying to select any text just results in a blue border around the pdf ... not text is able to be selected, and no links work. Every other embed mode (Full Window, Sized Container, Lightbox) still allows for text selection and linking, the in-line embed mode used to allow for this, and the older (main.js) version of the script for in-line embed mode still allows for this. I have tried this on Chrome, Firefox, Opera, and Safari on both desktop and mobile. The same behaviour appears in all of them. Do I have to reincode all my website pdfs using the old main.js script or will this function be restored?
We are client of "PDF Extract API", we wanted to check if Adobe is doing any kind of virus and vulnerability check on the PDF files?
So I have a page where people can read a magazine (basically in A4 format) using the API and the sized container. Switching view to full screen on a computer works perfectly, but when doing the same on a tablet or mobile, the view is turned to horizontal making the document even smaller and forcing people to turn their phones or tablets and actually making the document smaller and less readable.Anyone know of a way to fix this?
I'm trying to render the PDF and extract all the annotations (if available) of the following PDF file.https://drive.google.com/file/d/1PiEcI0bcviYecwbzwVCs2rY_0tiqfj2F/view?usp=share_linkwith the following code snippet: try { await viewSDKClient.ready(); const filePromise = Promise.resolve(file.arrayBuffer); // Pass the filePromise and name of the file to the previewFile API const adobeViewerPromise = viewSDKClient.previewFileUsingFilePromise( `pdf-div-${file.name}`, filePromise, file.name, UploadSizedContainerConfig); const adobeViewer = await adobeViewerPromise; const annotationManager = await adobeViewer.getAnnotationManager(); const res = await annotationManager.removeAnnotationsFromPDF(); return Promise.resolve({ pdfBuffer: res["pdfBuffer"], annotations: res["annotations"] });} catch (err) { console.error(err); return Promise.resolve({});} finally {...} And I keep getting this error: {code: 'FAIL', message: 'APIs
Hello! Is there any option to include the OCR confidence in the extracted json for the identified sections? Thank you
Hello! Limited support for only certain fonts (no custom fonts) seems to have been and may still be a long running issue for the Adobe PDF Services API when creating or exporting pdf documents. I noticed that the FAQ where supported fonts were previously linked from has been archived and is no longer available to view: https://community.adobe.com/t5/document-services-apis-discussions/faq-for-document-services-pdf-serv... Is there an alternative FAQ or document somewhere that replaced this valuable information?Does Adobe PDF Services API now support embedded "custom" fonts in the css of a html document when converting to a pdf file?Or when converting a pdf with embedded "custom" fonts to a pptx file? After doing some digging I was able to find this community post from March 2022 https://community.adobe.com/t5/acrobat-services-api-discussions/converting-pdf-to-docx-missing-font/m-p/12789289 that linked directly to the previously supported font csv files:Avai
Hi All,Trying to get this working vis AWS market place - when we click on "Configure your account" get the below..My enterprise admin is not sure what we need to enable, support tickets are helping as nobody is getting back to us. PDF Services API subscription is not available for this accountYour account is currently associated with an Enterprise where you don’t have permission to create the Credentials.You can also contact your Enterprise Admin or contact us to know more about Enterprise Licensing. Please sign up with a persona account to subscribe to our pay as you go service, which offers a free trial of 500 units during a 2 week evaluation period.
On this page: https://developer.adobe.com/document-services/docs/overview/pdf-services-api/howtos/service-region-configuration-for-apis/I've found that when using PDF Services you can choose between server in US and Europe. For my use case "Europe" is not specific enoguh, because of privacy reasons, I need to know where (which country) this server(s) actually is.
Hi! We're trying to put a magazine online and have it working, sort of, using the api and setting it up using the sized container. However, when you click on th icon to show the document it in full screen view, it loads for like a nanosecond then returns to the usual view. Have I missed something or what am I doing wrong? The code used is (credentials removed):<div id="adobe-dc-view" style="height: 1275px; width: 900px;"></div><script src="https://documentservices.adobe.com/view-sdk/viewer.js"></script><script type="text/javascript">document.addEventListener("adobe_dc_view_sdk.ready", function(){var adobeDCView = new AdobeDC.View({clientId: "XXXXX", divId: "adobe-dc-view", locale: "da-DK"});adobeDCView.previewFile({content: {location: {url: "/wp-content/uploads/2023/02/Ide-Politik-2023_1_email.pdf"}},metaData: {fileName: "Idé Politik 01-2023"}}, {embedMode: "SIZED_CONTAINER"});});</script> I also tried using the In-Line view to test ho
Given that it is irrational for users under the free plan to expect the same promptness and attention for support as paid users, wanted to know if there is a separate forum or community for paid users of Adobe Extract API to seek support.
Hello, We started off with a trial for Adobe PDF Services API and then we added payment info via AWS Marketplace. Looking in the AWS portal, I see the subscription for Adobe PDF Services, but no usage and no resource. Looking in the Adobe portal, it looks like the 1000 units from the trial are still being used, but we are nearing the end of those units. How can I confirm that the paid subscription is going to kick in when the 1000 units are reached? Also, it mentions that tags (aws:marketplace:isv:pdfOperation and aws:marketplace:isv:docOperation) can be added to the Cost Explorer, but I can't find them in the Tag Editor. How do I add the appropriate tags so I can see them in Cost Explorer? Thank you, Rob
Hi, I'm using the Embed PDF Viewer API with in-line embed mode in my web application, and am observing undesirable behavior where the viewer will automatically scroll the browser page and set focus to the top of the embedded PDF in desktop browsers, even when "focusOnRendering" is explicitly set to false, upon adjusting the zoom level of the browser. This occurs when both page content and the embedded viewer are both in view, and seems to be reliably reproduced on Chrome and Edge. Even worse, on some devices such as a Windows laptop with display scaling enabled, the browser immediately automatically scrolls the page to the top of the PDF on page load without changing the browser zoom first. This CodePen demonstrates this behavior: Adobe Embed API: Changing browser zoom auto-scrolls PDF into focus (codepen.io) This is undesired because the user may be zooming in to read the content that precedes the embedded PDF, but now they have to manually scroll back to it a
I'm currently researching to use the Adobe PDF Services API in our service to convert Word and Excel files to PDFs. I have a question regarding the rate limit. According to your documentation at https://developer.adobe.com/document-services/docs/overview/pdf-services-api/dcserviceslicensing/#usage-limits, "the maximum requests per minute is 25 RPM". I would like to know if this limit applies to API requests or operation requests. My program currently calls the API following the steps outlined in the "Using Our APIs" article at https://developer.adobe.com/document-services/docs/overview/pdf-services-api/howtos/api-usage/: 1. Get an access token 2. Obtain a signed URL for uploading 3. Create a PDF conversion job 4. Poll for job completion 5. Download the PDF I need to send at least five API requests per process, and we may send multiple requests if the conversion takes longer, especially during step 4 when polling for job completion. Could you please clarify if the rate limit
Currently, the structure of the JSON output is flat. Additional steps need to be taken to build a hierarchy of elements for republishing the content in other formats. Is there a way to get the output with hierarchy via the API, or any helper scripts to create a JSON/XML with hierarchy?
Hi,I am using the Adobe API for .net.I have 2 files (file1.docx & file2.pdf) and I need to merge both output to pdf file(file3.pdf) programmatically.Using createPDFOperation, I know how to convert file1.docx to file1.pdf file. Later, I can use the combineFilesOperation to combine file1.pdf + file2.pdf = file3.pdf.However, by following this process, I am creating file1.pdf which I will be discarding any way. Only reason I am creating file1.pdf is to combine both files. Not sure you can combine docx and pdf files in same operation. I tried and it did not work.I am not sure if this is the right approach and hence, I am reaching out to the community to know if there is any other alternate approach.Thanks in advance.Regards,Chocks
Is there a way to obtain the JWT token via API, in a single call, without using Node, Java or PHP? (ex. Postman)Which is the correct metaScopes to use into the config.js in Node JWT test, when using PDF Services API? I tried with metaScopes : "ent_user_sdk" but it's wrong and don't understand why. Thanks
We are using Adobe Extract API. We send a simple PDF page with 3 articles, each article has an image and each article is separated with a ruler line. The JSON returned is then converted to HTML.Problem: We are finding the correct image is not being displayed with the relevant text. Also the elements of the PDF page are not listed in a workable mehtod. i.e. no identification of where articles start/stop.I read that Adobe use Machine Learning to analyse PDFs, so this basic level of functionality was assumed to be present. We are probably missing something obvious, but please can you advise?I attatch the single page PDF which was processed by Adobe Extract API, the JSON returned and a PDF of the HTML we generated from the JSON (Sadly you can't attach html files here). The PDF of the HTML shows that the first article is with the wrong image. The JSON has referenced the wrong image with the text. It's not a complex page.If the Adobe system can't place the right image with its relevant
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.