『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Unlock the full value of DC Web with our global community.
新着順
using Embed API downloading the PDF
Hello everyone,I am planning to integrate the PDF Extract API in UiPath tool and Jupyter notebook.Does anyone have experience in how to Setup or Use it in UiPath and Jupyter notebook
I've tried this but it doesn't seem to work. I created an index html page following instructions found online but it doesn't work.Can anyone help?Thank you.
Upon rendering a single PDF page using the Embed API in "IN_LINE" mode, the container height is not matching the document height. It is consistently off by 35px, resulting in a white bar under the document.The above screenshot is an example document with a black background and in landscape orientation. It is generated by creating a single powerpoint slide with a black background and is attached to this post. It demonstrates the white bar at the bottom. When downloading the document, it does not show the same white bar.
I need to show multiple PDF files on a page, one at a time. User clicks Next and Previous buttons to cycle through these PDF files. I'm trying to reuse the AdobeDC.View object and trying to call previewFile() every time user clicks the next or previous buttons. But after the first file is successfully displayed the next call to previewFile() fails with this error message. [mobx] Invariant failed: Since strict-mode is enabled, changing observed observable values outside actions is not allowed. Please wrap the code in an `action` if this change is intended. Tried to modify: AppStore@1.isHidingBranding <script> let page = 1 let adobeDCView = undefined function next() { page += 1 showPage() } function prev() { page -= 1 showPage() } function showPage() { const url = "api/view/papers.pdf?page=" + page adobeDCView.previewFile({ content: { location: { url: url } }, meta
What I want to do is take an existing PDF template in PDF Format that has form fields in them. I want to send that template along with the JSON data payload to Adobe API so that the API fills those form fields with the JSON data and the PDF gets generated. Is this possible to do? Other companies have this capability. I want to use the existing PDF's I have instead of having to create word templates.
The web application has integration with AdobeSign API.Flow of operation is-User logs into AdobeSign and gets an Access token.Then selects a document to upload to AdobeSign- which succeeds.After this the signing url should open in an iframe where the user can add signers etc.But this is where one user is running into error that says- auth.services.adobe.com refused to connect.This error happens only for this user and only in Chrome. Seems to work in IE.Any pointers would be appreciated. Thank you in advance!
Hello, After an exception is given and we want to debug the issue. How do we utilise the trackingId to debug it? I've pasted the exception below:Exception encountered while executing operation { ServiceApiError: An Internal Server Error has occurred.; transactionId=e97HT6BynCTIl3ukGpRuejdmlhae5iKh at multipartResponseParser.parse (/home/ubuntu/projects/PDF-extraction/node_modules/@adobe/pdfservices-node-sdk/src/internal/api/cpf-api.js:197:20) at IncomingForm.<anonymous> (/home/ubuntu/projects/PDF-extraction/node_modules/formidable/lib/incoming_form.js:107:9) at IncomingForm.emit (events.js:198:13) at IncomingForm._maybeEnd (/home/ubuntu/projects/PDF-extraction/node_modules/formidable/lib/incoming_form.js:557:8) at JSONParser.parser.onEnd (/home/ubuntu/projects/PDF-extraction/node_modules/formidable/lib/incoming_form.js:532:10) a
Hi folks! If you haven't yet tried the PDF Extract API (https://developer.adobe.com/document-services/apis/pdf-extract/), you may find this example I wrote interesting: Integrating AI Computer Vision with Your PDF Documents It demonstrates how to work with the output of our Extract process and integrate that with other services, in this case Microsoft's powerful image recognition API.
Every month, the Adobe Document Services team will be hosting an online stream called Paper Clips. We've run this for the last several months now and you can watch previous episodes here: https://www.youtube.com/playlist?list=PLcVEYUqU7VRe4sT-Bf8flvRz1XXUyGmtF Every month we'll cover a new topic, have special guests, and do our best to answer any questions you may have. We'll post announcements for upcoming sessions in the forums.
Hi.Please tell me about the security of CompressAPI in PDF Services API.After compressing a PDF on the API server, will the file remain on the API server?
Power Automate connection to Adobe Document Services API. I generate key pair, input the private key along with other credentials and get this error:"Test connection failed. Details: Private key file could not be parsed."
Hello,I am using the virtually standard code below to create a PDF from Url. It is working perfectly when the targetUrl is my app in production (https://ffpro.ca/index) but failing at FileRef.CreateFromURI with an ServiceApiException when the targetUrl is my localhost (https://localhost:xxxxx/index )Am I missing something? My Service Account credentials are clearly ok for production. I suspect that Adobe does not have access to my localhost but I don't know what to do to make this work in my development environment. I tried to disable Norton 360 or safe browser protection without success. Any suggestion?Thanks in advanceJean-Philippe ConfigureLogging();try{// Initial setup, create credentials instance.Credentials credentials = Credentials.ServiceAccountCredentialsBuilder().FromFile(Directory.GetCurrentDirectory() + "/pdfservices-api-credentials.json").Build(); //Create an ExecutionContext using credentials and create a ne
I am currently evaluating the compression REST apis. I am getting results via the GET request where the compressed file is returned however I am getting errors stating the returned file is invalid, I am correctly extracting the returned file from the returned string and converting it to Uint8Array or even Arraybuffer but neither yields a valid file and I am extracting just from the %PDF string in the returned data and I have tried compressing different files - all yield same results
Hi,I have created a Logic App in Azure that collects PDFs in a array and will use "Merge PDFs"-action:Below is some of the input that is sent to the "Merge PDFs"-action:"body": { "files": [ { "$content": "JVBERi0xLjYNJeLjz9MNCjMxMyAwIG9iag08PC9MaW5lYXJpemVkIDEvTCAxNzQwMzMvTyAzMTUvRSAxNTk1MDMvTiAyL1QgMTczNjY3L0ggWyA1MjMgMjM5XT4+DWVuZG9iag0gICAgICAgICAgICA..", "$content-type": "application/pdf" }, { "$content-type": "application/pdf", "$content": "JVBERi0xLjcNCiW1tbW1DQoxIDAgb2JqDQo8PC9UeXBlL0NhdGFsb2cvUGFnZXMgMiAwIFIvTGFuZyhlbi1VUykgL1N0cnVjdFRyZWVSb290IDIzIDAgUi9NYXJrSW5mbzw8L01hcmtlZCB0cnVlPj4.." } ], "outputFileName": "Dummy.pdf" }I have also tried to create another logic app that retrieves PDF-content from to SharePoint-files, append them to an array and then run "Merge PDFs". Same error here:The "Generate document from Word template" and "Convert Word to PDF" works fine:
I have a current approval Power Automate Flow that works like a champ. It is used to route invoices for approval and creates an Approval Summary page using fields in a document library. The process goes as follows: a new invoice is loaded into the document library and certain fields are completed. The invoice is selected and we manually trigger the Invoice Approval flow. It is a fairly complicated flow and involves many steps and actions. The end result is the (hopefully) fully approved invoice with the flow ending with the creation of the Approval Summary page and an email informing that said summary page is ready for merging. Then someone has to go to the document library and manually merge the Approval Summary page and the originally loaded invoice so that there is 1 file with the summary page as page 1 and the invoice that was routed as the reminder of the file. The original invoice could be multiple pages but we've never seen an invoice be
Hi, I'm having difficult to hide the annotation tools, below is my code But this is what I see [Moderator removed the images as per request] Any idea why it's not working? thx
I am trying to set the zoom level of my PDFS the same such that they share the same margin.The docs specify: This API accepts a float value as input and sets the zoom level of the PDF to that value. The input must lie between the minimum and maximum allowed zoom levels of the PDF. What is the default range of this float value when no min/max is set? How do i get the equivilent of 80% zoom (where 100% is fit to width)?
I have created a zip file by installing library in a folder bu using commandPip install pdfservices-sdk -t . And it was successful and i added a layer in aws lambda and tried running code but i think library is working with code. Can anybody has solution to this?
I'm using the C# Adobe.PdfServicesSDK Nuget package to extract Json contents out of some PDF files. However the PDF files are over 200 pages long hence. Due to the limitation on the size file for exraction, I'm splitting the files into 20 pages files and then extracting the Json contents out of thos split files. So the process is simply: 1. split each file. 2. extract Json out of each split file 3. split the next big file and so on ... It works perfectly on the first big file. I can split and then extract. However, when I move onto the next big file it fails when trying to split. So the exact same code, that split the first file now throws an exception when trying to run the split operation on the next file. It throws a ServiceApiException with the message: "Error response received for the request: The given key was not present in the dictionary". See attached screenshot for stack trace. I have tried creating a new Execution context with each call to to the API and I've
When I use text comment in Thai and move the box. Texts will be blur like it's not render after I move the box. But if I resize the box after I move it. That text will be normal again. I try to move English, Japanese, Chinese and Thai but another language except Thai has no problem. I tried many language. Only Thai will blur. But after I resize the box it will get back. How can I move the box and text will not blur? Thank you in advance!
In the desktop Acrobat DC, the Export to Word function can create both Retain Flowing Text (RFT)and Retain Page Layout (RPL) formatted Word.docx files. The Github .Net example, ExportPDFToDocx, exports PDF to Word. https://github.com/adobe/PDFServices.NET.SDK.Samples What is the parameter for RFT or RPL output format? // Set operation input from a local PDF fileFileRef sourceFileRef = FileRef.CreateFromLocalFile(@"exportPdfInput.pdf");exportPdfOperation.SetInput(sourceFileRef); // Execute the operation.FileRef result = exportPdfOperation.Execute(executionContext); Thanks for the help.
Hi there,I'm new to this API, so this is most certainly a beginners question.I want to use the API for a very simple application: Embed a PDF on my website and allow any user to annotate the file and also to see all existing annotations. While embedding the file works just fine, I can't figure out how to store and retrieve user annotations. I understand that user annotations are to be written to JSON-files but how do I create them in a user session? I went through the examples on GitHub (https://github.com/adobe/pdf-embed-api-samples/tree/master/More%20Samples/PDF%20Annotations%20APIs) but wasn't able find a solution for my problem.A link to a tutorial or some code example would be very helpful!Thanks!
i am reading a pdf file which have more than 2000 page, I am using splitoperation to spilt the pages and doing the ocr but it cannot split it to more than 20 pages
Currently multiple drawings cannot be added using iPad. This can be reproduced using the Adobe Embed API demo. To reproduce, on an iPad (or iPad emulation using browser dev tools), use the drawing tool to make a drawing. Wait 3+ seconds so the save button appears. Add another drawing. The previous drawing will dissapear. Only one drawing will ever show at once using this method.
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
すでにアカウントをお持ちですか?ログイン
アカウントをお持ちではありませんか? アカウントを作成
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.