Unlock the full value of DC Web with our global community.
Recently active
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
Getting 'Fatal error ' as below when generating pdf using Adobepdfservices-sdkversion 2.2.2 Html to pdf operationAll validations successfully done. Beginning CreatePDF operation execution 2022-12-13 16:59:48.749 [XNIO-1 task-14] ERROR c.a.e.d.m.b.s.CreatePDFFromHTML - Exception encountered while executing operation com.adobe.pdfservices.operation.exception.ServiceApiException: description ='Fatal error, Please check logs for details.'; requestTrackingId='Y6GzQ0h7Wj1e2GAdWMuBVapadrRcvtwY'; statusCode=500; errorCode=UNKNOWN at com.adobe.pdfservices.operation.pdfops.CreatePDFOperation.execute(CreatePDFOperation.java:212) at com.anthem.emep.dckr.microsvc.bbbookletservice.service.CreatePDFFromHTML.generatePdf(CreatePDFFromHTML.java:68)
Hi everyone! Currently working on a view on a desktop application that would show the user what the PDF embed would look like on a mobile device. Is there a way to specify the document embed API uses a mobile view rather than desktop in this case?
Hi All, We are fetching the records from dataverse table and populating into a word document and then using Adobe action 'Convert word to pdf' to generate PDF report document. It is working successfully for 3630 records but if we try to print more records then Convert word to PDF action is failing with 502 Bad gateway error.Error :Body { "error": { "code": 502, "source": "flow-apim-unitedstates-002-eastus-01.azure-apim.net", "clientRequestId": "b87317d1-d6e4-4f9b-aa90-9fab3f363e63", "message": "BadGateway", "innerError": { "error": { "code": "OperationException", "message": "Error occurred while processing the request; transactionId=TnzHFzQ3jecbiy
var adobeDCView = new AdobeDC.View({clientId: "<YOUR_CLIENT_ID>", divId: "adobe-dc-view"});adobeDCView.previewFile( {`content: {location: {url: "<Path to your PDF/yourfilename.pdf">}},`metaData: {fileName: "yourfilename.pdf"}`});In this the divid is just used for Setting up the rendering area ;Or else will they use it for any other purposeI just want to know the internal working code for this one
I am converting html to pdf using node js. to create credential Object, I am using below code. const credentials = PDFServicesSdk.Credentials.serviceAccountCredentialsBuilder() .fromFile(path1.join(__dirname, '../pdfservices-api-credentials.json')) .build(); this is working absolutely fine. but for security resons I dont want to keep credentails inside file pdfservices-api-credentials.jsonI am keeping its content in azure vault. So, is there any other way to use instead of using fromFile method?
Hello, The PDF Embed API forces the user on mobile to preview the PDF in full screen when the EmbedMode is set to SIZED_CONTAINER.It's all fine in the full screen until the user gives a swipe gesture from top to bottom to go to top of the PDF or to scroll up in the pdf. As soon as this happens, the user is thrown out of the full screen preview into a sized container window where the PDF isn't previewed and an expand button is shown. User has to click on the expand icon again to preview the PDF in full screen. It's very annoying and makes reading the pdf on mobile almost impossible. Please fix it.
Hi ,I'm running a node.js server that calls Adobe API. The adobe api works in my local system fine but on server it's through error. It is only not wokring in specific one lives server.1. this is only happen in live server2. In other live server also it's working but only occuring in specific one server3. We delete some users form our server using deluser commend then after we restart our nginx server and the problem is occure.Can anyone please help me 🙂0|server | Exception encountered while executing operation { ServiceApiError: Response Parser Failure: Request aborted 0|server | at multipartResponseParser.parse (/var/catapultSrcCode/catapulthq/server/node_modules/@adobe/documentservices-pdftools-node-sdk/src/internal/api/cpf-api.js:160:19) 0|server | at IncomingForm.<anonymous> (/var/catapultSrcCode/catapulthq/server/node_modules/formidable/lib/incoming_form.js:104:9) 0|server | at emitOne (events.js:116:13) 0|server | at IncomingFor
I have been successful at displaying a file from dropbox in the API using the following:const dropboxLink = "https://www.dropbox.com/s/3epmnxwhrnk7lgd/Bodea%20Brochure.pdf?dl=0"; const clientId = "myclientidnumber"; const viewerOptions = { embedMode: "FULL_WINDOW", defaultViewMode: "FIT_PAGE", showDownloadPDF: false, showPrintPDF: false, showLeftHandPanel: true, showAnnotationTools: true }; document.addEventListener("adobe_dc_view_sdk.ready", function () { var urlToPDF = directLinkFromDropboxLink(dropboxLink); var adobeDCView = new AdobeDC.View({ clientId: clientId, // This clientId can be used for any CodePen example divId: "embeddedView" }); adobeDCView.previewFile( { content: { promise: fetchPDF(urlToPDF) }, metaData: { fileName: urlToPDF.split("/").slice(-1)[0] } }, viewerOptions ); }); // Utility Functions: // Return a Promise that fetches the PDF. function fetchPDF(urlT
Hi ,I'm running a node.js server that calls Adobe API. The adobe api works in my local system fine but on server it's through error. It is only not wokring in specific one lives server. Can anyone please help me 🙂0|server | Exception encountered while executing operation { ServiceApiError: Response Parser Failure: Request aborted 0|server | at multipartResponseParser.parse (/var/catapultSrcCode/catapulthq/server/node_modules/@adobe/documentservices-pdftools-node-sdk/src/internal/api/cpf-api.js:160:19) 0|server | at IncomingForm.<anonymous> (/var/catapultSrcCode/catapulthq/server/node_modules/formidable/lib/incoming_form.js:104:9) 0|server | at emitOne (events.js:116:13) 0|server | at IncomingForm.emit (events.js:211:7) 0|server | at IncomingForm._error (/var/catapultSrcCode/catapulthq/server/node_modules/formidable/lib/incoming_form.js:298:8) 0|server | at IncomingMessage.<anonymous> (/var/catapultSrcCode/catapulthq/server/n
Is it possible to add a character limit and character count display when adding a text comment and/or when adding a comment (sticky note)?
We have a scenario where we have an adobe pdf document which is rendering successfully on UI. This document asks the user to sign digitally. After the user signs this document, it shall render successfully on UI with digital signature but this time the document fails to render on UI with CORS error though we see 'File Preview Error' on browser.We have already registered our domain with adobe with 'PDF embed API' and used the generated ClientID in our code.We see following CORS error on console: -Our code looks like as follow: -readyPromise: Promise<any> = new Promise((resolve) => { if (window.AdobeDC) { resolve(''); } else { document.addEventListener('adobe_dc_view_sdk.ready', () => { resolve(''); }); } }); previewFile(divId: string, documentUrl: string) { const config: any = { clientId: 'client_id', }; if (divId) { config.divId = divId; } this.adobeDCView = new window.AdobeDC.View(config); const
In the desktop browsers we can get the toolbar by hovering, but on the mobile browsers, its not display the bottom bar, nor indicate the arrows for the next page.How can we get the next page indication or slide arrows? to guide the users, that here are move pages to the PDF file?Screenshot: There is no indication if this document has any additional pages, or to move left or right, to see more pages of the pdf file.
Hello,I'm getting the following error when running PDF text extraction on certain PDFs: raise OperationException(message="Error response received for request", adobe.pdfservices.operation.internal.exceptions.OperationException adobe.pdfservices.operation.exception.exceptions.ServiceApiException: description =ERROR - Unable to extract content. Internal error; requestTrackingId=yQtpe6ZOBTtkGWg7b3hnHgjTqOVFuIaH; statusCode=500; errorCode=ERROR The API is working for most PDFs, but also regularly failing about 5% of the time, for various PDFs. An example of a PDF that fails to extract is here (also attached): https://openreview.net/pdf?id=xmJsuh8xlq I'm not clear what is causing the issue. Is it math symbols? Images? Tables? Something else entirely? Any light you could shed would be very helpful. Thank you!
Dear, After migrating to the new viewer.js, there is an automatically added horizontal margin (indicated in red): Is there an option to remove this? The image below is a side-to-side comparison of respectively the new and old versions. Also. I have not found a way to completely remove the rightHandPanel (cf. deprecated showLeftHandPanel).
Hi. I want to embed PDF on my website by API but got a File preview error.The demo file run well, as I added the credential of my website. The following link is my website to conduct PDF embed:https://gyulab.github.io//projects/2021/12/06/temp.htmlAnd the github link to view code:https://github.com/gyulab/gyulab.github.io/blob/master/_posts/Projects/2021-10-15-temp.md As you see, using <iframe> or <embed> shows the file, but the file with API not working. I have tried to alter the url as follows, but none of these work:1) Google Drive Preview file: https://drive.google.com/file/d/1rkZbHboUDY52Shh0kEoPs_rF7NYesnmq/preview 2) Github directory:_posts/Projects/MS482_Report_20180583_Gyujun_Jeong.pdf 3) Github direct link (raw file): ttps://github.com/gyulab/gyulab.github.io/raw/9113cbc5602d0fb3177408304d38be8e99c8c72f/_posts/Projects/MS482_Report_20180583_Gyujun_Jeong.pdf All solution would be appreciated.
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.