Re: Creating a Plugin that will save the PDF to a specific location when signed.
I found a way to do it using folder level javascript and it works just fine with both Acrobat and Reader. For anyone else with a similar problem, I used this page as reference:...
View ArticleConverting html to pdf with some editable fields
We trying using pdf.generator to create pdf from html.We facing some of the problems in that1. pdf got disrupted 2. We need some of the text to be editable in newly created pdf. How can we achieve this?
View ArticleRe: Converting html to pdf with some editable fields
What part of the Acrobat SDK is "pdf generator"?Distrupted means what?Editable in what sense?
View ArticleTo convert PDF to image
I want PDF to convert it toImage using acrobat. is it possible to convert using c#. if possible can you please suggest me how to proceed . thankyou.
View ArticleRe: To convert PDF to image
On a server?At the click of a buton in a C# app on a system where Acrobat Pro is installed?With the free Adobe Reader?Something else?
View ArticleRe: Converting html to pdf with some editable fields
Hi, here is the summary of what we wantWedo have ceratin placeholer in or htmlwhile creating pdf from html we want that these place holder should be editable and user should be able to enter values in...
View ArticleRe: Converting html to pdf with some editable fields
You don't mention what version of Acrobat you are using to do the HTML->PDF conversion. Acrobat 11.0.4, the current version, uses a recent version of WebKit (the same engine in Safari, Chrome etc.)...
View ArticleCopy contents from one page to another
Hi all, I want to copy the contents of pdpage1 of PDDOC1 at particular page to another pdpage2 of pddoc2.Also provide how to save a particular page from PDDoc to another pdf. Please help on the above.
View ArticleRe: Copy contents from one page to another
Have you downloaded the SDK, looked over the documentation and/or the sample code? These are quite easy operations that are well documented there.
View ArticleRe: Copy contents from one page to another
Yes i readAVDoc current2 = AVAppGetActiveDoc();PDDoc myPDDoc = AVDocGetPDDoc(current2);PDPage pdPage; for(all page loop)for(//retrieving all the annotoation){//getting rectangle co ordinate from...
View ArticleRe: Copy contents from one page to another
Since I don't know what problems you are having, I don't know what is wrong. A few things. 1 – There is no error handling here. You need DURING/HANDLING blocks2 – Do you want to copy the entire page...
View ArticleRe: Copy contents from one page to another
My task is Cropping the particular page in pdfSave the current cropped page as another pdf I have croped the page and save contents but while saving that page as another pdf i struck since the below...
View ArticleRe: Copy contents from one page to another
PDDocInsertPage() to copy the page from one PDF to another
View ArticleRe: Converting html to pdf with some editable fields
Hi Thanks for the info. I am able to make fields editable while converting html to pdf.It works fine when I convert HTML-->pdf by doing "HTML to pdf" conversion by usind acrobat professional...
View ArticleRe: Converting html to pdf with some editable fields
Not sure what you want us to say about this other API, nothing to do with Adobe.
View ArticleRe: Converting html to pdf with some editable fields
That's not an Adobe product and this is a forum to discuss the Adobe Acrobat SDK. If you have problems with a 3rd party vendor (Aspose in this case), you need to contact them directly.
View ArticleRe: How to implement text selection tool
Hello, Thanks for your response. I have implemented the function for AVToolRec as follows. AVToolRec AVRect; AVRect.size = sizeof(AVToolRec); AVRect.GetType =...
View ArticleRe: How to implement text selection tool
Changing the cursor does just that – changes the cursor. If you want to select stuff yourself, you need to completely reimplement selection, etc. Look at PDTextSelect to get information about the...
View ArticleRe: How to implement text selection tool
Thanks for your response. PDTextSelect gives the text for selected region, if we provide document, page and ASFixedRect values. But I want to do for Active document. As in my code on DoClick function,...
View ArticleRe: How to implement text selection tool
You have to write the rest of the methods of the selection server. Reimplementing a text selection server is not a simple project.
View Article