This ASFixedMatrixTransformRect() code seems to be breaking my application
My drawing application was working perfectly, until I decided to add a transform. All I am trying to do is change the sign of the Y coordinates, a very common operation. This is the result BEFORE using...
View ArticleRe: Access to AGL (Adobe Glyph List) from plug-in API
I don't recall there being direct access to the AGL, though there are PDFont APIs that will give you some of the same information already processed against the font data.
View ArticleRe: This ASFixedMatrixTransformRect() code seems to be breaking my application
Travis: Your problem is clear: you are using a container for Rectangles to store Line Segments. Rectangles happen to have certain characteristics, ie, they are normal. The left coordinate is always...
View ArticleExtract text from PDF without opening PDF in window C#
Hello, I'm creating a application for searching text in PDF's. I found some code wich uses the SDK from Acrobat (Installed on my system). But all the snippets I find seem to open a PDF window and then...
View ArticleRe: Extract text from PDF without opening PDF in window C#
Is this to happen in a regular logged on, interactive, session for a user who also owns Acrobat?Or in a service/server environment?Or something else?
View ArticleRe: Extract text from PDF without opening PDF in window C#
Hello, I own a copy of Acrobat pro 9. and its is for my own use. I am not a proffesional developper and this application wil not be distributed.
View ArticleRe: wxWidgets, Mac and Acrobat 9 SDK
I have a plug-in for Reader 10 written using wxWidgets 3.0 under Mac OS X 10.7 and I have all problems described in OP post. Issue with sockets is added. (when releasing socket object it has deleted...
View ArticleHow do I work in Acrobat SDK?
Hello, I have never worked with Acrobat SDK before. I need to develop a plugin for Acrobat Reader 9. Can someone please point me in the right direction and tell me what to do? After I have installed...
View ArticleRe: How do I work in Acrobat SDK?
So a few things. 1 - We longer support development of plugins for Reader 9. You should update to Reader X (or XI).2 - In order to create a plugin for Reader, you need to submit the necessary forms...
View ArticleRe: How do I work in Acrobat SDK?
At the detail level, 1. Bookmarks are just bookmarks with a selection of actions attached. While they might seem to describe a range of pages, they don't. Of course, you can analyse the bookmark...
View ArticleRe: How do I work in Acrobat SDK?
Welcome, Linda: I wish somebody would have given me this advice when I started dealing with the Acrobat SDK, a decade ago. (1) The SDK contains a MSVS Solution called "All". You will find plenty of...
View ArticleRe: How do I work in Acrobat SDK?
1 - We longer support development of plugins for Reader 9. You should update to Reader X (or XI). The reason why I wanted to develop a plugin for Reader 9 is because we use that version at work...
View ArticleRe: How do I work in Acrobat SDK?
If you have Acrobat installed - it uses Acrobat. If you have Reader installed, it uses Reader. Developing plugins for Acrobat is free. It's only developing for Reader that requires a license. If you...
View ArticleRe: How do I work in Acrobat SDK?
lindaeliseruble wrote: 3 - There are LOTS of plugin examples in the SDK - but they are all for Acrobat and not Reader The plugin examples are for only Acrobat pro and not Reader? Linda: I was under a...
View ArticleRe: How do I work in Acrobat SDK?
lindaeliseruble wrote: The reason why I wanted to create a plugin for Reader is because I need to view PDFs from a website and when I click a link from this website to view the PDF it looks like Reader...
View ArticleRe: How do I work in Acrobat SDK?
The differences in plugin APIs are in two areas:- if Reader doesn't have the functionality, then the API isn't there. (eg. AVConversion)- if the API modifies the PDF in some way, such as PDEdit The...
View ArticleHow to catch a button clicked event in a form?
Hello, I'm working on a plugin for Acrobat that detects when a form field has lost focus using AVPageViewAnnotDidPerformOp, but it doesn't work when a button is clicked (at best, once it has been...
View ArticleRe: How to catch a button clicked event in a form?
Put some Javascript as the button's action. Or even put a custom action that calls your plugin.
View ArticleWhich is the sanctioned way to retrieve the page-level orientation angle?
By now, I have become familiar with the fact that each Path has its own transform matrix. However, I noticed that my application displays some page rotated. Acrobat shows them in landscape and my app...
View Article