『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Unlock the full value of DC Web with our global community.
新着順
Hello, When converting PDF's to DOCX the image is broken. The image contains text. Could the problem be that the fonts are not standard and this can't be interpreted by the API? Thanks,Tre
Hi, I wonder if you could add the page number in the annotation data. thanks.
We have a batch of PDFs that we are looking to pull the data from. This batch is uploaded to a folder daily. I am looking for help on using this API. Where is the best place to find help using this API to help accomplish this tasks for someone that is new to using APIs?
I am trying to get the Adobe pdf tools api to work in Power Automate. I've tried converting Word-documents (dotx) and images (png) to pdf but it's not working at all. When I use another api, there no problem converting with the same input parameters from Power Automate. This is an example of the latest error. I am trying to convert an image from a Sharepoint-list: Output:{"statusCode":400,"headers":{"Transfer-Encoding":"chunked","x-request-id":"7J1RTNRoDHLaDKURB19rgHNmBBtgCNmU","pragma":"no-cache","x-content-type-options":"nosniff","strict-transport-security":"max-age=31536000; includeSubdomains","x-robots-tag":"noindex,nofollow","vary":"accept-encoding","x-envoy-upstream-service-time":"50","Timing-Allow-Origin":"*","x-ms-apihub-cached-response":"true","Cache-Control":"no-store, must-revalidate, no-cache","Date":"Tue, 13 Apr 2021 11:50:34 GMT","Content-Type":"application/json","Expires":"Thu, 01 Dec 1994 16:00:00 GMT","Content-Length":"226"},"body":{"error":{"code":"Operation
First of all, thank you to the PDF Embedded API developers.It's okay to write in English when I leave a sticker note, but if I write in Korean, the letters will be broken (attached a sample photo)Adding type 'utf-8' is not working when saving the file to web server(https://community.adobe.com/t5/document-services-apis/is-there-any-way-to-save-edited-pdf-in-server-in-pdf-embed-api/td-p/11767431)and downloading directly to my local hard drive using 'save as' is also breaks the stitch note text.Is there a solution?
Hello all,I am attempting to utilize Adobe Document Services pdf Embed API for viewing pdf documents on my website. Following is what I've done so far.However, as noted below, when I plug in my information, the pdf, which is on my web server, does not open either locally or on the Wordpress web pagethat I created on my website. Can anyone see where things are going wrong when I plug my info into the js code?I added this code to my website header. I must have seen somewhere in the documentation to do this. <!-- Adobe PDF viewer --> <script src="[URL]https://documentcloud.adobe.com/view-sdk/main.js[/URL]"></script> adobe’s original code, which when I create an html page with Brackets works locally on my iMac and opens their sample pdf [I]<!--Get the samples from https://www.adobe.com/go/pdfembedapi_samples-->[/I] 2<!DOCTYPE html> 3<html> 4<head> 5 <title>Adobe Document Ser
I am a teacher using dynamic pdfs on my website that students can fill in. I wanted students to submit/save their work on my server so I can mark and I found the solution here in the forum from @Joel Geraci https://codepen.io/practicalPDF/pen/eYBOpEm. However I could not make it work on my server as it requires PHP or similar code. Can anyone please guide on PHP code so I can complete this implementation.
Hello,We are using the embedded pdf viewer in our platform, and we started seeing files that just wouldn't open in the viewer.The error was just a stacktrace starting from: "at self.___cxa_throw (wasm_acrobat2.js:1)" When looking at the file locally on my Mac Preview tool, it opened correctly, and when clicking on "inspect tool" it shows pdf version: 1.7 is this a version that you do not support?re-saving the file created the same pdf with version 1.3 did work eventually my question - which versions of PDF files the embedded viewer supports? what can we do when investigating a file that doesn't open? Thanks,Ron,Navina
I'm having an issue while trying to use the PDF Extract API, even though it is working as expected I was not able to get the output as a ZIP file containing all the images and csv files. What I'm getting is a multipart response, but I'm un aware how to parse this response to get the indevidual content properly.I would like to know if I'm doing something wrong or if I'm missing a step in the extraction process. This is what I'm sending as the contentAnalyzerRequests { "cpf:engine": { "repo:assetId": "urn:aaid:cpf:58af6e2c-1f0c-400d-9188-078000185695" }, "cpf:inputs": { "documentIn": { "cpf:location": "InputFile0", "dc:format": "application/pdf" }, "params": { "cpf:inline": { "elementsToExtract": ["text", "tables"], "renditionsToExtract": [ "tables", "figures"], "tableOutputFormat": "csv" } } }, "cpf:outputs": {
Hello All, I am using the PDF Extract API by making a REST call using postman. The call is successful and i am able to Poll and get the contentAnalyserResponse in text format. How do i get this as separate files that can get downloaded to my disk as images and/or csv/json files for text and tables. Can i receive the response as object(s) that can be written to different files with the proper extensions to achieve this. I remember reading somewhere but now cannot locate it again that the response can be received as a single downloadable zip file with all the separate files in a fixed folder structure... If anyone has tried or achieved this, please could you share how you have done it. Thanks and regards,Adi
Is there a way to enable to the hand tool for the embedded PDF SDK? Right now if users zoom in they have to scroll using the horizontal and vertical scroll bars (separately), which they consider a deal breaker. They want to just drag around the document using the hand tool (which our previous embedable viewer allowed). Thanks, Karl
Does Adobe publish a typescript definition for the SDK?I've been trying to build one myself but its is very difficult to put together, as there is no comprehensive list of properties any particular option takes.Here is some portions i've completed. You can see how difficult it is to stitch this together. export namespace AdobePdfSdk { export interface ViewerConfig { enableAnnotationAPIs?: boolean; showDisabledSaveButton?: boolean; showAnnotationTools?: boolean; showLeftHandPanel?: boolean; } export enum EmbedModes { 'SIZED_CONTAINER' = 'SIZED_CONTAINER', 'IN_LINE' = 'IN_LINE', } .... This is the worst part of the closed source project, it is impossible to inspect the code and without comprehensive documentation it is soo hard.
Hi Am thinking to add some interactive elements to the annotation, to allow teachers to provide video/quiz/discission etc in context within a document; it seems the current Adobe PDF Annotation schema only allow text base bodyValue; but in https://www.w3.org/TR/annotation-model/#string-body , it specifies textual body attribute. Can this "TextualBody" attribute be included in Adobe PDF annotation schema ?Many thanksWen "bodyValue": String,"body": { "type" : "TextualBody", "value" : "<p>j'adore !</p>", "format" : "text/html", "language" : "en" },
Hi,I use the Adobe.PDFServicesSDKin a .NET application.I try to use the SplitPDFOperation.For a not understadilbe reason, the function freezes randomly.For the same PDF file, one time the SplitPDFOperation succeeds, 5 minutes later it doesn't succeed (the application freezes and wait indefinitely).Could you advice me what I do wrong ?Thank you,Robert
I have a PDF document that's been prepared ahead of time with a number of textboxes pre-filled with data.I then send it to the Adobe REST API as a transient document to be signed using the adobe sign service. The problem I'm having is that Adobe Sign is adding a blank page and adding a signature box there, instead of using the signature box that's already on the pdf form. Looks like this: After reading through the tutorials, I thought I could specify the signature location by labeling the text field as {{Submitter Signature_es_:signature}} which looks like this in Adobe DC: But it still adds a blank page with just a single signature. I can see that there's a way to specify the location in the JSON payload that gets sent along with the transient document. Is that the only way to specify where the signature is on the document? Is there anyway for me to specify in Adobe DC which field is the signature field? Thank you for a
I would like to hide Legal Advices option from the tools in inline embedded view of PDF Embed view. Can you please help me with info on that ?
Currently all the search results are highlighted in the same color. Is there a way I can customize the color of the results.?
Hi Expert, Can we integrae Adobe E-Sgin with D365 F&O, my requirement is need to send offer letter to applicant when they are onboarding for E-Signature.
Hi There, I would like to read a pdf and extract content based on search strings provided (via code).This content can be in column formats as well. Hence the service should be able to identify and return content accordingly.I am using Ruby on Rails. Hence would like to know if these API's can be incorporated in Ruby on Rails. Regards,Mru
Hello Community,Need your help on the subject matter.the save and send part I can do. but how do I make the submit button flatten the file before sending it?I believe a script would be required to perform this task.someone pls help me asap.Thanks.
ers Alles englisch, ich kann nur deutsch! Prob: habe eine ps-Datei aus Broadvision (Interleaf) erzeugt. Wandle ich diese Datei mit Adobe Distiller Version 5.0 um, werden die Schriften unders dargestellt wie im Orginal WARUM?
I am trying to integrate https://cpf-ue1.adobe.io/ops/:create api on a ROR(Ruby on Rails) Application. I am also aware that we Adobe doesnot have a SDK for ROR. So using the public api is my only option . Please find the below screen shot for error messages
I get the following exception when using the sample python source for PDF extraction (extract_txt_from_pdf_with_in_memory_auth_credential.py): location = CPFApi.cpf_create_ops_api(context, cpf_content_analyzer_req, [file_ref],File "/home/thomas_onesourceregulatory_com/anaconda3/envs/osr-py3-8/lib/python3.8/site-packages/adobe/pdfservices/operation/internal/api/cpf_api.py", line 63, in cpf_create_ops_apiresponse = http_client.process_request(http_request=http_request,File "/home/thomas_onesourceregulatory_com/anaconda3/envs/osr-py3-8/lib/python3.8/site-packages/adobe/pdfservices/operation/internal/http/http_client.py", line 35, in process_requestaccess_token = http_request.authenticator.session_token().access_tokenFile "/home/thomas_onesourceregulatory_com/anaconda3/envs/osr-py3-8/lib/python3.8/site-packages/adobe/pdfservices/operation/internal/auth/jwt_authenticator.py", line 45, in session_tokenreturn self.refresh_token()File "/home/thomas_onesourceregulatory_com/anaconda3/envs/o
The adobe document generation is working only form documents created by WinWord apps (locally apps or 365), documents created from openOffice or download from googleDocx as .docx is not working (blank page is received). any idea ? tks and regards,Marcelo
Hi,Hope you are all doing well! I have setup Conditional access policy which blocks download and print feature for end user in SharePoint online. But, after deploy Adobe document cloud solution, it let's user to print document when user open the file using Adobe document cloud. It looks like Conditional access policy or SharePoint limited access is not applied on Adobe Document cloud tool. Can you please help me to fix this issue?
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.