How to make an Image XObject transparent?
Hi, Does anyone know how to make an Image XObject transparent with the CosObj-way?
View ArticleRe: How to make an Image XObject transparent?
Sure – add an 'SMask'. Details in ISO 32000-1:2008, chapter 11
View ArticleRe: How to make an Image XObject transparent?
Be sure to read the transparency chapter in 32000-1, which is a struggle and a half. Set a SMask in the image. Or, as the image XObject is applied (Do operator) refer to an ExGState (gs operator) with...
View ArticleRe: AcroExch.App GetInterface returns null value after upgrading from Acrobat...
I have disabled all security options like protected view etc. Any suggestion to check whether the plugin is loaded to acrobat successfully or not? At the moment, I check it by Help --> Online...
View ArticleRe: AcroExch.App GetInterface returns null value after upgrading from Acrobat...
How about setting a breakpoint in your plugin via the debugger?
View ArticleRe: AcroExch.App GetInterface returns null value after upgrading from Acrobat...
Yes, I have tried to run debug mode and put break points in various area, however, the debugger did not run to the break point when I start acrobat 11 ( I start acrobat through the debugger).
View ArticleRe: AcroExch.App GetInterface returns null value after upgrading from Acrobat...
A plug-in is not required to do so, but it is considered very good practice that it add a menu item to the Help > About Third Party Plug-ins menu item. You can then tell at a glance whether it is...
View ArticleRe: AcroExch.App GetInterface returns null value after upgrading from Acrobat...
I guess you are right, rebuild with the new sdk header may be the only way to go. I have tried to rebuild the plugin with the new header, unfortenately, the plugin was built using Visual studio 6.0...
View ArticleRe: AcroExch.App GetInterface returns null value after upgrading from Acrobat...
I think so, but remember the new plug-in won't work with older versions of Acrobat. If that is a requirement you need to keep two codebases (one unmigrated).
View ArticleRe: Create new tag for selected text using API?
As per sample of snippetRunner for adding tag for selected text.I tried below codePDPage pg;AVDoc avDoc = AVAppGetActiveDoc();PDDoc pd = AVDocGetPDDoc(avDoc); pg = PDDocAcquirePage(pd, 0);ASAtom...
View ArticleRe: How to make an Image XObject transparent?
Could you give an example of the gs-operator with transparancy options? I cannot find one in the ref or elsewhere.
View ArticleRe: How to make an Image XObject transparent?
If you have read the chapter on transparency it will be clear how to work with the CA, ca, BM, SMask graphics state parameters. (There is AIS too, but I never find that clear even after repeated...
View ArticleRe: Create new tag for selected text using API?
Matching selections to PDE objects is notoriously difficult, often requiring a bit of fuzzy logic to reconcile two entirely different models. Working with the quads of the two models is probably the...
View ArticleRe: Create new tag for selected text using API?
means, I have to find quads of selected text and match with all structue element and find out the PDE Object.There is no other way to add tag for selected text.
View ArticleRe: Create new tag for selected text using API?
You have to match the bounding area/quads of the selected text with the bounds of each PDEElement to find the one(s) that match. Once you have that, you can then associate structure to it.
View ArticleRe: Create new tag for selected text using API?
If you find a better way, please share it. It might be better to write your own selection server, but probably that would overall be more work.
View ArticleRe: How to programatically C# apply redaction annotation?
Read this:http://acrobatusers.com/tutorials/auto_redaction_with_javascript
View ArticlePrinting 4 page to 1 page c#
HI I am currently working on a tool to automate a lot of the PDF processeses here. I've almost finished, but there is one 4 page document, that needs to be printed to a PDF, with 4 pages to 1. I have...
View Article