Unlock the full value of DC Web with our global community.
Recently active
embedMode: IN_LINE, defaultViewMode: FIT_WIDTH. There is a ::after tag that's set to be full screen and `display: block` that appears when #pages-view gets focus. This style blocks all interaction with the actual PDF content (links, highlighting, etc). It draws a blue box-shadow and a border around the PDF content. Selector: .PagesView__HighlightPagesView___3H4Jk:focus:after The :after style also needs `pointer-events: none` so it stops blocking interaction with the PDF. Example: https://www.hiv.uw.edu/page/symptom-evaluation/guides#odynophagia
Hello everyone, I have a dll written in C#, used to send a pdf to the adobe Webservice and get a word file. When i test the dll with a c# projet, it works, but when i test the same dll with a delphi project i get an error message :"Error response received for the request: La demande a été abandonnée : Impossible de créer un canal sécurisé SSL/TLS." Does anybody have a solution ? I made different tests, an add the following code:ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls| SecurityProtocolType.Tls11| SecurityProtocolType.Tls12| SecurityProtocolType.Ssl3;*/ But the problem is the same ! Thanks in adavance
Hello everyone, I faced a problem when use adobe-dc-viewer, in last time it works fine, but now it give me this warning and the file in not appear the code: var adobeDCView = new AdobeDC.View({clientId: "My client Id", divId: "adobe-dc-view"}); adobeDCView.previewFile({ content:{location: { url: src}}, metaData:{fileName: `Attachment`} }, {embedMode: "SIZED_CONTAINER", showDownloadPDF: false, showPrintPDF: false});
Hi Team,We are using adobe service api to convert pdf to json . The result is not matching on each platform/environment we run, Even if we run for the same pdf.For eg : for the same pdf adobe once given it as table "Path" : "//Document/Table"For the same pdf if we run again we are not getting result as "Path" : //Document/Figure" Please suggest what we can do to achieve same output each time we run the api .
Hi I am trying to use pdf services api through pdfservices-sdk 2.0.0. I downloaded the sample and it came with all necessary credintials.In my personal laptop it works fine I am able to parse the pdf. The issue is in my organisation where I work , its giving connection error from SDK. ERROR:root:Exception encountered while executing operationTraceback (most recent call last):File "C:\Users\V807134\ds\tools\python3.8\latest\lib\site-packages\urllib3\connection.py", line 174, in _new_connconn = connection.create_connection(File "C:\Users\V807134\ds\tools\python3.8\latest\lib\site-packages\urllib3\util\connection.py", line 95, in create_connectionraise errFile "C:\Users\V807134\ds\tools\python3.8\latest\lib\site-packages\urllib3\util\connection.py", line 85, in create_connectionsock.connect(sa)TimeoutError: [WinError 10060] A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed beca
The Powershell script that I am testing uses "AcroExch.Pddoc".I have Adobe Acrobat Pro the paid version. How do I find the AcroExch.Pddoc?
I reached the free trial quota for the integration which was 1000 uses. I just subscribed with a 5 cent per use charge since I don't have enough time to talk to a sales rep about increasing the quota. I want to integrate PDF tools with microsoft power automate. I have all credentials such as the client id, client secret, technical account, etc, BUT I do not have the Base-64 encoded Private Key, I NEED this to integrate. I can copy and past all these things to microsoft power automate.... BUT NO Base 64 encrypted private key. I have a downloaded zip with some info, but it the info in the downloaded zip does not match the info presented on my main projects screen for the specific API.
Hello, I have been working on an integration with the PDF Services API using the Create PDF function to generate PDF files from Microsoft Office documents. I've noticed that the API consistently fails to convert large Excel files (>5-10mb). In the documentation it appears that the only file size restriction stated in the docs is that uploaded files can be 100mb max. The error produced by this failed conversion just indicates that the request parser hit the end of the response unexpectedly. I am using the same functions to submit Word, Powerpoint, and smaller Excel files successfully. I also note that Excel files >5-10mb also tend to fail using the online Adobe PDF converter. Although I can't see one stated in the documentation, I was wondering if some max page limit for the converted PDF is applied, as the Excel files in question have many rows and therefore produce many PDF pages? I coudn't find anything in the documentation to suggest that these files s
Hello,I get a OSError: [WinError 17] impossible to move file while trying to extract text from pdf.Here's the output from VSCode: INFO:adobe.pdfservices.operation.pdfops.extract_pdf_operation:All validations successfully done. Beginning ExtractPDF operation executionINFO:adobe.pdfservices.operation.pdfops.extract_pdf_operation:Extract Operation Successful - Transaction ID: mzOTh1xDTJpUOhSDxX5FlL2Cv6lKeS1ZINFO:adobe.pdfservices.operation.internal.io.file_ref_impl:Moving file at C:\Users\zepef\AppData\Local\Temp\extractSdkResult\49fb0eb16a5911ecb66ec0b88376b18c.zip to target e:\LocalRepos\Projects\kgc-book-club\pdfservices-python-sdk-samples/output/ExtractTextInfoFromPDF.zipTraceback (most recent call last):File "e:\LocalRepos\Projects\kgc-book-club\pdfservices-python-sdk-samples\src\extractpdf\extract_txt_from_pdf.py", line 51, in <module>result.save_as(base_path + "/output/ExtractTextInfoFromPDF.zip")File "C:\Users\zepef\anaconda3\envs\kgc-bc\lib\site-packages\adobe\pdf
1. How to show save button on navbar continuously & can we change the design of save button2. How we can enable disable some of features like only comment editor or any tool, not all.3. How to open comment editor for the first time also when user open the pdf
Hi All, I am new to the adobe SDK i am looking for a solution to convert pdf file into a word file uing adobe SDK java program.i have a licensed version of abode in my laptop it would be really helpful if someone share the documentation for the same. thanks in advance
Is it possible to not start at page 1 but page 17 for example?I couldn't find anything in the documentation. Thanks in advance
Good day, Is it possible to somehow ask for a signature to be placed in the PDF Embed API? https://documentservices.adobe.com/view-sdk-demo/index.html#/view/FULL_WINDOW/Bodea%20Brochure.pdf Thanks!
Hi All,I'm trying to use Adobe PDF API service to extract table data in pdf files. For that i'm using sampl code for python sdk, but facing issue while trying to execute code in databricks environment. Please guide how to fix the issueimport logging import os.path from adobe.pdfservices.operation.auth.credentials import Credentials from adobe.pdfservices.operation.exception.exceptions import ServiceApiException, ServiceUsageException, SdkException from adobe.pdfservices.operation.pdfops.options.extractpdf.extract_pdf_options import ExtractPDFOptions from adobe.pdfservices.operation.pdfops.options.extractpdf.extract_element_type import ExtractElementType from adobe.pdfservices.operation.pdfops.options.extractpdf.extract_renditions_element_type import \ ExtractRenditionsElementType from adobe.pdfservices.operation.pdfops.options.extractpdf.table_structure_type import TableStructureType from adobe.pdfservices.operation.execution_context import ExecutionContext from adobe.pdfservices.
Good day, In the attached screenshot, when you click on "Download" it will download a PDF file, and this PDF file will have the comments and annotations embedded directly into the source file. Is there a way to get that PDF programmatically? Some API method I am missing, or somehow that I can get this file with a post request etc? I have a requirement where I need to get that PDF file without needing the user to Download and Upload it back into my system. I hope this makes sense. Kind regards
Hi There, While experimenting with table info extraction from PDF files, we get the gibberish text returned in the response. For example, in the attached PDF file, the "Filter bypass installed" text is getting converted to ")LOWHUE\\SDVVLQVWDOOHG". When we looked at the structured data returned by Adobe API, we found two differences in proper text vs gibberish text font that are respectively: 1. encoding: "Custom" vs encoding: "Identity-H"2. font_type: "Type1" vs font_type: "CIDFontType0" Not sure how to solve this issue, any suggestions? Attached the PDF and structuredData.json file
As I have even asked at this post. The latest update has already fixed the enableAnnotationAPIs problem. But when I call AnnotationManager to use more feature. If I use Text Comment and move the text. I got the same error again. "Cannot read properties of undefined (reading 'color')"
Hi,I use Pdf Embed API, I set showCommentsPanel: false and I use annotation API (enableAnnotationAPIs: true). When highlighted text is clicked then there is displayed Add a comment option in Highlight menu. I think, it shouldnt't be there if comments panel is hidden, because it does nothing in that configuration. I noticed that on overview website Add a comment option doesn't appear in highlight menu:How can I get the same effect?
Hi, my application does auto-highlighting after it searches through a pdf for key words. The highlighting is triggering the comments panel to come out, but I don't want to show the comments panel on auto highlight. I only want to show the comments panel when the user attempts to manually highlight. Is there a way to disable the panel from appearing after auto-highlight? Thanks!Matt
Can anyone help me how to use PDF Embed API on my WIX site (step by step) ? Can I use it with an IFRAME ?Best regardsClaudio
Method not found: 'System.String Jose.JWT.Encode(System.Object, System.Object, Jose.JwsAlgorithm, System.Collections.Generic.IDictionary`2<System.String,System.Object>, Jose.JwtSettings)' while executing extractPdfOperation.Execute(_executionContext) does anyone have idea what is about?
Good I'm new to this platform what happens to me is that I'm using the adobe API and I'm getting the error of the image I'm trying to solve it taking care to incorporate the data but I have not been able to What can be the error? and How can I solve it?
Hello, I am facing an issue which I have been trying to resolve but it is not straightforward for me so I would appreciate anyone guidance. I chose to remove the PDF Embed plugin and I am now using the adobe PDF Embed API: <div id="adobe-dc-view" style="height: 600px; width: full;"></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: "555555555555", divId: "adobe-dc-view"});adobeDCView.previewFile({content:{location: {url: "https://www.myaddress.com/wp-content/uploads/5.pdf"}},metaData:{fileName: "product-manual.pdf"}}, {embedMode: "FULL_WINDOW", showFullScreen: true});});</script> The primary issue is that the pdf is not always loading on my website. Sometimes it does and sometimes it does not and this is random. WPRocket is activated and so is: JSMinify, JS Deferred
Inquiry is whether there is a way that all items (all stages of execution) are sent to cc’s? The original request is sent to approx. five people to sign, and the cc’d parties receive an email that this has been done.Emails are received by the operator notifying when document is signed by one of the five parties and being sent to the next party.Once all five parties have signed, the fully executed agreement notice email is sent to those cc’d parties.Is there a way that all emails can be received by cc’s? What we found online was to contact Adobe Support to have this activated but not sure how to start this process.
Hi, I'm new to Document Services API - PDF Embed API and need some assistance, i have a web application that renders html as below, as you can see i have included the below code to embed a pdf using Document Services API, when i execute my web application workflow, after the below code is executed, the browser url changes to http://localhost:8080/qapps/hm/ViewPrintPdf?showPrintPDF=false&filename=20220803165218133_2022-09-28+18%3A06%3A51.pdf and the PDF renders automatically the very first time and the page is rendered [as expected], however on subsequent execution of my webapplication workflow the browser url changes correctly to http://localhost:8080/qapps/hm/ViewPrintPdf?showPrintPDF=false&filename=20220803165218133_2022-09-28+18%3A06%3A51.pdf however the browser does not render the pdf automatically unless i reload the page manually using browser reload button or Ctrl+R, but when i reload the page the pdf is rendered correctly, but when i restart by webap
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.