Re: Creating a Plugin that will save the PDF to a specific location when signed.
That is even better. How would I do that?
View ArticleRe: Creating a Plugin that will save the PDF to a specific location when signed.
AFExecuteThisJavaScript is the API call to use to run JavaScript from a plugin.
View ArticleHow to extract named destination with page numbers from the pdf document
Hello, I want to extract named destination along with page numbers. I have implemented the code to get named destination as follows: PDDoc pdDoc =...
View ArticleRe: How to extract named destination with page numbers from the pdf document
Where did you see the entry Page in the dictionary?
View ArticleRe: How to extract named destination with page numbers from the pdf document
Thanks for your response Bernd. I am using 3rd party tool to find out the structure of the PDFIt shows Page#1 for page 1 and Page#3 for page 3 Can I get this value from the dictionary object. Please...
View ArticleRe: How to extract named destination with page numbers from the pdf document
So this dictionary is the actual page object, not a destination dictionary, is that correct?
View ArticleRe: How to extract named destination with page numbers from the pdf document
yes. That is page object. Can I get this value to know the page number.
View ArticleRe: How to extract named destination with page numbers from the pdf document
I thought there was a direct method but I cannot find it. That leaves two methods1. What Acrobat has to do itself. Start with a Page object, and work up the tree using Parent, Kids, Count to identify...
View ArticleHow to read text from pdf file using acrobat sdk 11 in asp.net
i want to read text from pdf flie using acrobat sdk in asp.net , i am using c# for development , please tell how to do this ,tell me step by step , from configuration of sdk to out put of program...
View ArticleRe: How to extract named destination with page numbers from the pdf document
Using PDNameTree CosDoc cosDoc = PDDocGetCosDoc(pdDoc);CosObj cosObj = CosDocGetRoot (cosDoc); cosDictNames = CosDictGet( cosObj, ASAtomFromString( "Names")); PDNameTree pdNT =...
View ArticleRe: How to extract named destination with page numbers from the pdf document
There is no normal situation in which you should be using the fields of a CosObj directly. If you want to see if an object is not null, use CosObjGetType(xxx) != CosNull, though in this case it would...
View ArticleRe: How to read text from pdf file using acrobat sdk 11 in asp.net
Absolutely, you cannot and must not. Acrobat is not technically suitable for use on a server. Acrobat is not licensed for use on a server.
View ArticleRe: How to extract named destination with page numbers from the pdf document
PDPageGetNumber, IIRC.
View ArticleDoes Adobe provide a free library/SDK that can create a new PDF document?
Hi, Does Adobe provide any free library/SDK that can be used to create a new PDF document in Visual C++? Does the ActiveX control shipped with Acrobat Reader contain such a feature? Thanks Alan
View ArticleRe: Does Adobe provide a free library/SDK that can create a new PDF document?
OK. In that case, any paid version of lib/sdk available?
View ArticleRe: Does Adobe provide a free library/SDK that can create a new PDF document?
Sure. It's called the Adobe PDFLibrary and you can license it from Datalogics (http://www.datalogics.com)
View ArticleRe: How to extract named destination with page numbers from the pdf document
Hi, I used PDNameTreeEnum. In SDK also they have not given where they are storing page number. In kids am getting "AP". In "AP" i got "Names" But under Names it shows some junk character. I tried to...
View ArticleRe: How to extract named destination with page numbers from the pdf document
The information is in the PDF specification (32000-1), did you look at 12.3.2.2 as I suggested?
View ArticleRe: How to extract named destination with page numbers from the pdf document
Thanks for the information. Shilp
View Article