Unlock the full value of DC Web with our global community.
Recently active
Hi, how can we create a pdf from an HTML table using javascript and can break the page and start on a new page after a particular row by checking the column value from that row.
sd = PDPdf .GetInfo("Modified")sd produces an empty string, but if you insert a key like "author" everything works. what's the problem?
We are working on a fillable pdf form and need to access form fields to pre-populate some fields and also let user update the values. How can we access the field objects from the form? Can we use "getXMPMetadata" from FormsAPI if so can you please provide us with an example
what can I do about dyanmiclinkmedia server in adobe folder in documents taking up 98% of my hard drive? Can I delete it? what does it do?
From playing around with the Embed API, it seems that you cannot scroll through the pages in the sized container mode. Instead, the dock at the bottom is a bit different and you have to click to go through the pages. Is there an option to make the sized container PDF scrollable as well? So when the user's mouse is over the container and they scroll, it will move through the pages (like the Full Window mode). Thanks!
Does the PFD Embed API offer any options to change the branding, replace or remove the logo? I found, and tried options below, but cannot see any effect:- showBranding: false,- showTopBar: false,- useDocCloudLogo: false Where I can find all available previewConfig options documented ?Do you plan to add possibility of custom branding for PDF Viewer, assuminng it's not yet available ? Thanks, Przemek
Greetings! I have a few questions about PDF Embed API (embed mode - IN_LINE):When clicking the link inside embed PDF document, the "Open Web Page" dialog appears, but its positioning is poor - it appears too high (out of user view) and the user needs to scroll up to see it. Can position of this dialog be modified?"Open Web Page" dialog has the button "Open Link". After clicking on it Chrome browser is blocking it (pop-up blocked dialog appears). How can this be fixed? Is there any solution (e.g, in JS - any event so I can get an URL from this dialog)? Thanks in advance!
My math notes that would we transfer from my whatsapp
While merging two pdf, if two pdf are of different width, In the combined pdf we can easily notice the difference. The content of the smaller pdf has a background black color in the combined PDF. This seems odd. Is there any way we can resize the pdfs to the desired size before merging?
Hello all, I'm not sure of of the best place to post this so I'm starting here with hope someone can guide me. Thanks. We needed to find another solution at our university for where to house our PDFs and be able to grab a public facing URL from them to then use on our sites (Drupal) as our servers were filling up too fast. We were advised by our central Drupal group to use Blackboard from which we could get a public facing URL. Everything seemed fine. The about a year or so in I noticed that links stopped working when I knew I had already fixed them at least once. Turns out the Uni switched to AWS cloud hosting and I think it may have been then the issue started. If you grab the shortened 360 degree link and use that in the site, it's fine, but if you place the link first in a browser to test it (what I had been doing), it expands into an AWS URL and then if you copy it from the browser address bar and copy it into your site, that link would expire in 6 hours! Nobody told us
Getting following error while trying to open a form filling PDF Error: Cannot get DCAPI metadata if DCAPI is disabled at eval (eval at getMetadata (rendition.js:2), <anonymous>:1:1) at Function.reject (<anonymous>) at RenditionAPI.getMetadata (rendition.js:2) at DocAPIInDropin.getMetaData (bootstrap.js:2) at bootstrap.js:2
kingdy168@gmail.com
Hi. I keep all annotations in my database. How can I prevent users from deleting another comments?
How set zoom 100%, when `embedMode: "FULL_WINDOW"` and `defaultViewMode: "FIT_WIDTH"`? You need to set the width of the document that has a plus scrollbar, plus margins? Or load a document, check zoom from...`await apis.getPageZoom(pageNumber)`...and calculate with the width of the container containing the document. There is a better method?
I get the following error for some (not all) pdf files:An error was encountered while processing the file. Some features might not work. I have implemented the PDF embed API to let users view and annotate eachothers PDF in my website. For the majority of the PDFs this works fine, but occasionally, there are PDFs which are not able to be rendered with the PDF Embed API. All PDF's in my system are loaded in the exact same way, so it's definetely a problem which only occurs in certain files.In my browser console the following error is shown, which might be helpful to identify the problem:Attached you can find an example of a pdf file which is not rendering.
Has anyone stored View Cloud SDK PDF annotations server side? It looks like it should be easy enough to do, but just seeing if anyone else has done it.
I am attempting to pull annotations from my server into Embed API. I have successfully saved them to the server and then pulled them back down to the client, but when adding them with .addAnnotations or .addAnnotationsInPDF, it throws a {"code":"FAIL","message":"Invalid time value"}. I have checked the schema, all is well there, and both the "created" and "modified" times look correct. Any ideas?
When i use PDF tool API to encrypt pdf file, all javaScript which embed were gone(I using a tool 3rd to embed). The javaScript when i use in tool Adobe Arcbat DC is still I don't know why ?
How disable scrollbar when `embedMode: "FULL_WINDOW"`?
How do I take a screenshot of an area in a PDF file when I have coordinates for that place?This is exactly about the screenshot of annotation.
What do `AdobeViewer.executeCommand`?And is there documentation for `AdobeViewer.executeCommand`?
How get page width and height?
I am trying to retrieve the getSelectedText() value from a PREVIEW_SELECTED_END callback to populate the prompt for a Highlight comment entry as follows... trying to set var [selectedText]var selectedText; const eventOptions = { enableFilePreviewEvents: true } adobeDCView.registerCallback( AdobeDC.View.Enum.CallbackType.EVENT_LISTENER, function(event) { console.log("Event: " + event.type); if (event.type === "PREVIEW_SELECTION_END") { previewFilePromise.then(adobeViewer => { adobeViewer.getAPIs().then(apis => { apis.getSelectedContent() .then(result => selectedText = result.data) .catch(error => console.log(error)); }); }); console.log("selectedText = " + selectedText); } }, eventOptions );...which does work, but not al
We have a requirement to fill pdf (have fillable form fileds) form fields through API. Does PDF API Tools(.net core 3.1) support to fill pdf programetically? I have gone through .net sample project but didnot find any related samples. Any help really appriciated! Thank you!
I've got the "In Line" option embedded on the page below, with "showPageControls" set to "true" but I'm not seeing the option to fullscreen the PDF. Also, is there a way to remove all controls, including the Adobe branding/pagination controls?https://www.tripspark.com/why-us<div id="adobe-dc-view" style="width: 100%;">&nbsp;</div> <script src="https://documentcloud.adobe.com/view-sdk/main.js"></script><script type="text/javascript"> document.addEventListener("adobe_dc_view_sdk.ready", function () { var adobeDCView = new AdobeDC.View({ clientId: "5238abb0fc19469882b0c9bb3027ef9a", divId: "adobe-dc-view" }); adobeDCView.previewFile({ content: { location: { url: "https://www.tripspark.com/resource_files/Why-TripSpark-Overview.pdf" } }, metaData: { fileName: "Why TripSpark" } }, { embedMode: "IN_LINE", showDownloadPDF: false, sh
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.