Unlock the full value of DC Web with our global community.
Recently active
Hi,I'm using an external analytics API on my site. For it to be able to track activity in iframes, they say I need to include the tracking code into said iframes as well. In other cases, even for iframes from other domains, this simple thing worked:<iframe src="..."> <script> //tracking code </script> </iframe> But with the PDF Embed API I'm starting with a div, in which the iframe is created dynamically. Is there any way I can get my tracking code there?I tried adding the tracking code into the iframe.innerHTML after it's created but that doesn't seem to work for the tracking...Thanks in advance!
I would like to use a set of custom buttons outside the viewer to navigate through the document, and hide the viewer's interface. The showPageControls parameter doesn't seem to do anything when embedMode is SIZED_CONTAINER. Can the page controls be hidden? There is an undocumented showTopBar parameter in the JavaScript code, but it doesn't seem to do anything, either. Can the top bar be hidden?
I need to create a PDF from HTML with only page number as footer instead of Metadata like filename.Since Customizing footers are not provided with the documentation, is there any way to add only page number to the exported file,
I am using assembly of Adobe.DocumentCloud.Services to convert report from word into PDF, Only Avenir faimly fonts not working and all other fonts working in PDF, this fonts is working in WORD doc.There is not any option to embed this fonts. Please help me how this fonts will work when i will convert into PDF from word.
<bottom> o.l.
I want to upload PDF from client PC to Adob Document Cloud without saving the PDF files in ServiceNow.But, I could ot find the API for uploading the PDF files to Adobe Document Clond.Please kindly inform me the information of the API from any web server to Adobe Document Cloud.
Hi, is there a way to convert PDF to XML using the PdfTools SDK? Thanks
I do not have AEM, but want to post notification messages to document cloud from my forms. is this possible and how is it done?
Hi, When I embed a pdf using the Adobe View sdk, Times new roman italics do not appear to display correctly in mathematical type (e.g. the x's don't look correct). Here is an example of what I mean: https://parkermaths.com/Resources/QuestionApp/Y1WK6HW.php The screenshot below shows what it should look like (this is what you get if you right click and download). Is there a workaround for this? Thanks, Andy
How to enable page-by-page mode in FULL_WINDOW layout?
The main problem is mine is that i am showing a document in my website using adobe view sdk and i did not want allow to download document by user so i disable the download button but now i find out that when i see page source code there a user can see my file link and so he can easily download the file using this link as iam using dropbox to storing file and dropbox link with adobe view sdk so is there any way i can hide or encrypt that link so user cannot able to see that link.
I'm new to PDF tools API and understaood the overall flow.. however im just wondering why the input file shall always be indext.html and we always have to set a ZIP as a source. Is there any alternative way I can direclty pass my HTML or HTML content to convert to PDF ?
I am trying to run the OCR operation in a ThreadPool. My code looks like this: ThreadPoolExecutor executor = (ThreadPoolExecutor) Executors.newFixedThreadPool(5); executor.submit(() -> { Credentials credentials = Credentials.serviceAccountCredentialsBuilder() .fromFile("/home/darvasr/dc-services-sdk-credentials.json") .build(); ExecutionContext executionContext = ExecutionContext.create(credentials); OCROperation ocrOperation = OCROperation.createNew(); But when the ExecutionContext instance gets created the run fails and exception occurs when the AuthenticatorFactory calls this: return new JwtAuthenticator((ServiceAccountCredentials) credentials); Detailed exception: What could be the problem (Same happens when I run it without the ThreadPoolExecutor) ? The OCR-ing works in a separate project.
I am trying to implemet a REST Api in Spring Boot to OCR and compress my pdf files. The OCR operation is working fine, but when I try to compress them I get the following error: java.lang.NoSuchMethodError: com.adobe.platform.operation.internal.api.CPFApi.cpfPredictApi(Lcom/adobe/platform/operation/internal/InternalExecutionContext;Lcom/adobe/platform/operation/internal/cpf/dto/request/ContentAnalyzerRequests;Ljava/util/List;Ljava/lang/Class;Ljava/lang/String;)Lcom/adobe/platform/operation/internal/http/HttpResponse; I have these two dependencies in my pom: <dependency> <groupId>com.adobe.documentcloud</groupId> <artifactId>dc-services-sdk</artifactId> <version>1.0.0</version> </dependency> <dependency> <groupId>com.adobe.documentservices</groupId> <artifactId>pdftools-sdk</artifactId>
I hope someone can help with this. (Please keep in mind that my technical knowledge is limited)I created this test page:https://www.posterpresentations.com/research/PI1065/DELETEME/basit-iqbal-php-framework.html The PDF displays properly but after you refresh the page it disapears.... I tested is in multople browsers with no luck. Here is the code I use: <div id="adobe-dc-view"></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: "c0ed52a26e894bb988b9242e11480d7c", divId: "adobe-dc-view"});adobeDCView.previewFile({content:{location: {url: "https://www.posterpresentations.com/research/PI1065/DELETEME/PHP%20framework.pdf"}},metaData:{fileName: "PHP Framework"}}, {defaultViewMode: "FIT_WIDTH", showAnnotationTools: false});});</script> Any suggestions?
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
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.