Re: SOAP issues
Hello again, because it seems to be a JavaScript issue, I opend this discussion in that forum: http://forums.adobe.com/message/6205851#6205851
View ArticleThe Mystery of the Missing Matrix
I believe there is a problem with the code in one of the samples provided: PDEPathExplorerSnip.cpp. I have tried the code with dozens of files from different sources (customers) and in both: - Windows...
View ArticleRe: The Mystery of the Missing Matrix
Actually the code is 100% correct. Although you did a translate in the 'cm' operator, you then proceeded to "invalidate it" but doing a '0 0 m'. The 'm' operator is explicit, NOT relative. This is...
View ArticleRe: The Mystery of the Missing Matrix
lrosenth wrote: Actually the code is 100% correct. Although you did a translate in the 'cm' operator, you then proceeded to "invalidate it" but doing a '0 0 m'. Me? That would be Adobe Illustrator - I...
View ArticleRe: The Mystery of the Missing Matrix
Travis Banger wrote: I can provide sample PDFs from many, many vendors, Adobe and 3rd. party. ALL of them make that "m 0 0" mistake and yet Acrobat displays the lines perfectly. See the contents of...
View ArticleRe: The Mystery of the Missing Matrix
Sorry - what was I thinking! Too early in the morning w/o enough caffeine. However, the fact is that the responses are still correct. You need to take into account the transformation - any/all of...
View ArticleRe: The Mystery of the Missing Matrix
I see nothing wrong with the code. PDFEdit is not presented with operators one at a time from the page stream. It is presented with an abstraction of the graphical elements. Operators that change the...
View ArticleRe: The Mystery of the Missing Matrix
lrosenth wrote: You need to take into account the transformation - any/all of them. So yes, if you want the absolute coords, you need to adjust these. I must add and confess that if the PDF file...
View ArticleRe: The Mystery of the Missing Matrix
Test Screen Name wrote: I see nothing wrong with the code. PDFEdit is not presented with operators one at a time from the page stream. It is presented with an abstraction of the graphical elements....
View ArticleRe: The Mystery of the Missing Matrix
Travis Banger wrote: I can provide sample PDFs from many, many vendors, Adobe and 3rd. party. ALL of them make that "0 0 m" mistake and yet Acrobat displays the lines perfectly. This is one of many:...
View ArticleRe: The Mystery of the Missing Matrix
Layers (known as optional content groups) in PDF have absolutely no impact on this. More likely, the authoring tool that you (or your customer) are using is generating different sets of content streams.
View ArticleRe: The Mystery of the Missing Matrix
The documentation for PDEPathGetData explains this, and tells you what to do.
View ArticleChanging a text field name in an existing PDF via VBA
Using OLE, I am accessing a given form with the following code: Function GetTextFieldNames(strFormName As String, strFieldName)Dim myApp As AcroAppDim acForm As Acrobat.AcroPDDocDim jso As ObjectDim...
View ArticleRe: Changing a text field name in an existing PDF via VBA
Have you consulted the documentation in the SDK about what methods are available? It will show you how to get the list of fields and/or the proper count for iteration. IIRC you can't change the name...
View ArticleDrawing on Reader page using AVPageViewAcquireMachinePort() in Mac OS X 10.7
Hello, I am writing plug-in for Reader X on Mac OS X 10.7 using XCode 3.6.2I have OnPageDraw() callback which is registered using AVAppRegisterForPageViewDrawing().Inside of it I am calling...
View ArticleRe: Drawing on Reader page using AVPageViewAcquireMachinePort() in Mac OS X 10.7
Unfortunately we don't expose any CG objects through the SDK at this time. We are aware this is a limitation for developers working on the Mac.
View ArticleRe: Drawing on Reader page using AVPageViewAcquireMachinePort() in Mac OS X 10.7
Looks like Mozila plug-ins developers solve it for us:https://wiki.mozilla.org/NPAPI:CoreGraphicsDrawingAll I need is: CGContextRef cgContext;CGrafPtr port = (CGrafPtr)...
View ArticleRe: Camera To World(C2W) Transformation Matrix to set Views
Hi, I've just figured it out myself so I will share while I'm on the topic Let's take a system, where:Y is vertical axis, X&Z are horizontal axes. We want to look in XY plane towards Z axis....
View Article