Re: Queries around Adobe Reader Plugins
No it is not. Also, we no longer support either Reader 8 or Reader 9.
View ArticleAvoid Info messages from Acrobat when open broken PDF document
I'm using Adobe SDK to check and fix a bunch of PDF files Dim avDoc As AcroAVDoc = Nothing Dim pdDoc As CAcroPDDoc = Nothing Try avDoc = New AcroAVDoc() If...
View ArticleRe: Avoid Info messages from Acrobat when open broken PDF document
Open the document first as a PDDoc, then convert to an AVDoc. Use an errorhandler to catch the error that gets thrown by the Open call when the filecannot be opened....
View ArticleSeparation color space for specific fonts
I Want to write a text (having special font) into a separation color space where my output device supports. I was able to get the font name for the text using PDETextGetFont() function but i want to...
View ArticleRe: Separation color space for specific fonts
You need to create the colorspace that you require and then apply it. There is a sample in the SDK I believe.
View ArticleAny Examples of using Acrobat SDK for .NET?
Hello.I need to be abel to do the following things using Adobe Acrobat SDK1) Append pages to the PDF document2) Draw rectangles on PDF page3) Draw text on PDF page (including different orientation...
View ArticleRe: Any Examples of using Acrobat SDK for .NET?
Are you looking to do these things- for a logged on user, with Acrobat installed, running an interactive app?- in a background task, with Acrobat installed, run for the user?- for any user with Adobe...
View ArticleRe: Separation color space for specific fonts
I am not familiar with color space creation so please bear with me. Could you please clarify me whether "Seperation color space" will use only for spot colors specified in the PDF and when our target...
View ArticleRe: Separation color space for specific fonts
You must first understand colour spaces in detail and how they are used and their affect on the PDF. The API does not help you with these things. Once you understand colour spaces, you can easily use...
View ArticleRe: Separation color space for specific fonts
A separation colorspace is how one would define a named colorant (also known as a spot color) in PDF. IN THEORY, you "target device" should see that named colorant and use the equivalently named ink -...
View ArticleRe: Any Examples of using Acrobat SDK for .NET?
I am sure one of the two resident gurus will correct me if I am wrong, but here's my 3 cents: - If you want to develop plugins, you must have Acrobat on the same machine since Adobe does not provide...
View ArticleIs there a function to determine whether a *path* or path element falls...
I seem to recall a function like the one described on the subject line. Or maybe I am confused wth AVGrafSelectGetBoundingRect()? TIA
View ArticleRe: Is there a function to determine whether a *path* or path element falls...
One thing worth noting: a path lies within the box defined by all its control points. This is obvious enough for straight lines, but it is also an interesting property of bezier curves. Curves may not...
View ArticleRe: Is there a function to determine whether a *path* or path element falls...
Test Screen Name wrote: One thing worth noting: a path lies within the box defined by all its control points. This is obvious enough for straight lines, but it is also an interesting property of bezier...
View ArticleRe: Any Examples of using Acrobat SDK for .NET?
Right now I'm trying this in my dev environment with acrobat pro installed.It is possible that if everything will be well my costomers will need to use these actions on their server to manage a lot of...
View ArticleRe: Any Examples of using Acrobat SDK for .NET?
My customer's solution has several issues generating PDF files and we are looking at the Acrobat SDK as at the instance of the final truth.I use Interop.Acrobat.dll as a .NET project reference to open...
View ArticleHow to determin if a pdf is secured
Hi I would like to know hot to determine if a pdf is secured. Can you please give me a code snippet or a link. Thanks
View ArticleRe: Any Examples of using Acrobat SDK for .NET?
Ok, if there is the possibility of your customers needing to run this on the server, you might as well abandon the idea of using Acrobat to save time later. Acrobat is only for interactive use on an...
View ArticleRe: Any Examples of using Acrobat SDK for .NET?
lAnubisl wrote: My customer's solution has several issues generating PDF files and we are looking at the Acrobat SDK as at the instance of the final truth. I use Interop.Acrobat.dll as a .NET project...
View ArticleRe: How to determin if a pdf is secured
A plug-in can do this. I don't think any other of the APIs can.
View Article