『アドビコミュニティフォーラム』に質問/トピックを投稿する方法
Unlock the full value of DC Web with our global community.
新着順
After copying the code from Postman I can sucessfully gertate (in PHP using cURL) my tokens. I the POLL the returend link in javascript and sucessfully gernerate a respone. Here is part of the Polling code I use in javescript to save the response. var xhr = new XMLHttpRequest(); xhr.open("GET", '<URL FROM HEADER>', true); xhr.responseType = "blob"; xhr.setRequestHeader('Authorization', accTok); xhr.setRequestHeader('x-api-key', '<KEY>'); xhr.onload = function(event) { if(this.status == 200) { // Create a new Blob object using the response data of the onload object var blob = new Blob([this.response], {type: 'application/octetstream'}); //Create a link element, hide it, direct it towards the blob, and then 'click' it programatically let a = document.createElement("a"); a.style = "display: none"; document.body.appendChild(a); //Create a DOMString representing the blob and point the link element towards it
Seems like this may be the next step. I'd love to see it soon!
Hi,We are getting the below console errors while using the PDF Embed API in IE11 and Firefox,IE11 - Unhandled promise rejection ReferenceError: 'TextDecoder' is undefined Firefox - Content Security Policy: The page’s settings blocked the loading of a resource at inline (“script-src”).These errors can be seen on adobe's demo page too- https://documentcloud.adobe.com/view-sdk-demo/index.html#/view/FULL_WINDOW/Bodea%20Brochure.pdf Please suggest if there is a fix for this.Thanks in advance!
Hi all, we have a cloud based NodeJS application and we are ingesting insurance schedules (policies) and getting the plain text out using PDFJS and then using Natural Language Understanding to perform entity extraction (named entity recogition) etc. Is there an Adobe or other cloud or on prem solution that could extract the plain text from a PDF but keep its structure somewhat exactly the way the Adobe Acrobat Pro DC allows for when you do File -> Save As -> Plain Text that we could leverage as the current solution we are using loses all structure and we just get long lines / blob of text. If we could mantain the structure somewhat we believe it will provide additional "metadata" to the natural language understanding...at least that is what we are hoping for. I have attached an example image to explain... Thank youAlessandro
I am using the PDF Embed API to add a PDF viewer to my popup dialog box.For some reason, the pageControl doesn't scroll the page when I click up/down button. So, I tried hiding the pageControl using the following configuration, but it doesn't seem to work const viewerConfig = { showPageControls: false, embedMode: "IN_LINE" }; below is my code snippetvar mainScript = document.createElement("script"); mainScript.setAttribute('src', 'https://documentcloud.adobe.com/view-sdk/main.js' ); var pdfviewerScript = document.createElement("script"); pdfviewerScript.setAttribute('src','pdfviewer.js'); dialog.content.appendChild(mainScript); dialog.content.appendChild(pdfviewerScript); dialog.show(); pdfviewer.js(function (document, $){ const viewerConfig = { showPageControls: false, embedMode: "IN_LINE" }; document.addEventListener("adobe_dc_view_sdk.ready", function() { var filePath = document.getElementById("pdf-timeline-s
Hi there, I have the following event options configured for my listener:const eventOptions = { enableFilePreviewEvents: true, enableAnnotationEvents: true, listenOn: [ AdobeDC.View.Enum.FilePreviewEvents.PREVIEW_SELECTION_END, AdobeDC.View.Enum.AnnotationEvents.ANNOTATION_ADDED ] }My issue is that whenever I add the PREVIEW_SELECTION_END to the list of events, the small pop-up annotation tools bar next to my cursor no longer shows up, and when I click the highlight button on the annotations tools bar at the top of the page, it doesn't highlight the selected text. For context, what I am trying to do is to capture the selected text, and then do something with that captured text if the user highlights it immediately after. As far as I can tell, the only way to get the value of the selected text is using the PREVIEW_SELECTION_END event. When I remove PREVIEW_SELECTION_END from my eventOptions, annotations work as expected, but I can't seem t
We've been exploring the creation of PDF files from Excel files using the Adobe PDF Services API. Obviously converting from XLS->PDF can be tricky in terms of the printable area, orientation, etc. We managed to get the basics working, but in one example we have, the Excel file is converted to a PDF but the last column is split to a second page. I can't find much info on it in terms of any options that might be available when calling the API. I've looked through the SDK JavaDocs and the "Create PDF" HowTo page. For example, I can see that for HTML->PDF you can use PageLayout and SetPageSize, but I don't see this available for XLS->PDF. Any suggestions? Are there options that can be applied or are we out of luck here?
Hi there,we want to use the Adobe Document Genaration API to cerate MS-Word-files. Unfortunately the listing for international subscriptions is currently limited to certain countries only, and our country (Switzerland) is not included in this list (https://developer.adobe.com/document-services/docs/overview/pdf-services-api/awsmarketplace/). We tried to contact sales with the standard-form, but didn't get any answer. Does anyone know what to do in such a case? Are the services limited to the countries listed or just the subscription / billing adress? Best regards and thanks for any inputs!Patrick
Hi Team,I'm trying to use the Adobe PDF Services API to convert pdf to word using the Export end point.On calling the poll method I'm getting the below response.{ "cpf:inputs": { "params": { "cpf:inline": { "targetFormat": "docx" } }, "documentIn": { "cpf:location": "InputFile", "dc:format": "application/pdf" } }, "cpf:engine":
Hello I would love some help. I have some meetings, face to face and am wanting a document signed digitally by multiple people who are in attendance. How am I best to do this? I can only work out how to do it by having to email it to them. Is there another way? Many thanks
What used to be working, started failing this morning or sometime during the weekend. The browser console error is: Unhandled Promise Rejection: Error: Get Metadata Request failed PromiseEmptyOnRejected bootstrap.js:2:888354 https://documentcloud.adobe.com/dcpreviewdropin/2.21.2_1.1308.0/bootstrap.js Any help would be appreciated.Thanks,Fred
Hi everyone,I work in commercial insurance and I use a lot of forms to get quotes from an insurance company. I'm looking to create my own online quote system so I can be faster to make my work.I was wondering with everything the API does, is it possible to create an online form that I can save / Edit whenever I want from HTML, Word, or PDF I don't mind, but I need the end result to be perfect for other companies otherwise they do not accept my quote.So far if I do it from the word template, then save it to PDF it works well. But when I use my HTML design, even with design inline, I still have shi**y seize problems and design problems.Do you think this API can solve my problem in any way?I have hired many coders to help me make it, but none of them can make it look perfect, just like the word to PDF save from Microsoft 365.Regards,Alain
Finding some strange behavior which I can't explain. I am not super facile with node.js but assume when a variable is passed, it is accessible anywhere and repeatedly. Please correct me if I am wrong. On a page of the docx, I am calling a variable which doesn't return anything... # exampleOn a scale of 0-100, the document’s sentiment score is: {{ sentiment }} However, if I repeat it elsewhere it renders... # test area at the bottom of the docTest sectionsentiment: 98 <-- this is the {{ sentiment }} variable repeated # here is a snippet of the sampleData passed to the docconst sampleData = {<snip>"sentiment": sentiment,</snip>}; # and here is a console.log of the correct sampleDataINFO sampleData--> { sentiment: 98} I thought it was related to upgrading to @adobe/pdfservices-node-sdk 2.2.2 but I rolled back to 2.2.0 and the behavior still exists. In previous months, calling variables was rock solid and I got exactly what I expect
I'm trying to create an agreement from a plain pdf, and adding a signature field before sending it. So I attempt to:upload a transient documentusing the transient document id, create an agrrement in draft stateusing the agreement id, and etag collected from the http headers, try to add a signature fieldI'm succesful in the first two steps, but the third step always ends up with an http error 412: RESOURCE_MODIFIED. Since I'm not doing anything between the agreement creation and adding the signature field, it stands to reason that I'm somehow using the ETag header and if-match field wrong, but I can't figure out what is the problem.I'm using the C# SDK. This is a sample of what I'm doing:var agreementsApi = new AgreementsApi(baseURI); var agreementInfo = new AgreementCreationInfo(); // Assume we add the appropiate fields to agreementInfo. That part is working agreementInfo.SignatureType = AgreementCreationInfo.SignatureTypeEnum.ESIGN; agreementInfo.State = AgreementCreationInfo.St
I use PDF to PPTx export API via Node.js SDK and see that request goes to the servers located in US. Is there a way to have same export operation perfomed within the EU?
Hi team, i am trying to set two page view using adoube embed api.I dint get any solucation from 'https://developer.adobe.com/document-services/docs/overview/pdf-embed-api/howtos_ui/#' this site. Is it possible to disaply pdf contents like below ?
Hi Team,Is there any way to download pdf with annotation without opening pdf in viewer?In my appication i have download button , if i click on that button then its should start download pdf with annotation.
Hello,i have a small document editing business for past few years i have been sending the project back to the client watermarked. How ever last couple of weeks i have had sp many orders not get picked up i thought they figured out how to remove watermark so i put password then clients would not return to pick up projeect i workrf on all day for example this Monday i had 7 orders and only 1 came back to pick up and pay . I do not want to pre charge clients is there a sade way where i can get like a $5 or $10 dollar deposit till work is done and when they return it will go twords paymeant i just dont want them to think im here to run off with there $$ IS THERE A SOLUTION TI WHERE WE ARE BOTH SAFE ANY SUGGESTIONS PLEASE THANK YOU DEEZ
Hello, I'm attempting to use the PDF embed API to view files in an Angular application. Most of the files render completely fine, but mainly redacted files seem to not render properly. I’ve added both an original and a redacted version of a file that renders incorrectly. If you open the redacted version in for example the Adobe PDF Embed API Demo (https://documentcloud.adobe.com/view-sdk-demo/index.html) you’ll see that it doesn’t render and when you open the dev-tools, the console is full of errors. The stack-trace can be seen here: Has anybody else experienced this or is this a known limitation of the embed api?
hi all,I dont seem to be able to find if having Adobe Pro DC grants access to Adobe PDF Service needed to use with Power Automate, does anyone know. Please and Thanks!
We can extract the pdf data into JSON. How can we convert back from JSON to PDF?
Hi All, I need view the XFA PDF file in Adobe PDF Embed API Web viewer.When i uploaded XFA form to Emded API web viewer Some of fileds are missing and total number of page is IncorrectPlease find the diffrence Left side: Embed API viewer Right Side: Adobe acrobar viewer Is there any option View XFA form correclty in web viewer These are the XFA form which i have and its produced using folling toolsAspose.pdf for.NET version 21.9.0LifeCycle Forms ES3 by AdobeForms in Adobe Experience ManagerPDF forms.PFA of Sample XFA PDF file.Please help me here to resolve this issue
We're using the PDF API since 12 months and Adobe to this date is unable to activate the billing through AWS. We have a valid and working AWS Marketplace subscription, but receive tons of errors from the PDF API and can only use the Free Trial which is soon to expire. Did anyone get the PDF Documents API to work through an AWS Marketplace subscription? I talked to numerous Adobe support people, opened a ticket with the Enterprise support. All they said is: there's a bug and subscription through AWS for International customers currently doesn't work. This is going on for 12 months now. Any idea? I don't want to refactor my application to use a different PDF service from a 3rd party 😕😕
I can't seem to find one and am looking to understand current and future errors at a more granular level. Thanks in advance.
I am working on a project to convert HTML to PDF using Adobe PDF Services API. One problem I am facing is that I can't customise header/footer such that they appear on each page of the PDF. Typically, I would've used CSS page margin boxes(@top-left, @10944696-right etc) and they seem to work just fine on PDF Reactor but not with this API. I have also tried using CSS position : fixed but then the header and footer overlap with the content on the page. So the questions I have are :1) Do the Adobe Doc Cloud APIs (particularly PDF Services API) support CSS Page Margin Boxes?2) What alternative should I use to customise my header/footers (eg. Inserting image in the header footer or make header/footer for a brand)3) Additionally, is there a way to watermark the PDF using the API.
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.