extract image from layer(OCG)
Dear all, Is it possible to cut an image from a layer? I cannot find it in documentation . I am going to implement legend for a pdf with maps. The problem by placing legend into pdf is, that it not...
View ArticleRe: extract image from layer(OCG)
You should also look at FixedRect Annotations, which were designed for exactly this purpose. However, to answer your question - yes, use the PDEdit APIs.
View Articlefind an highlight text with Excel vba an Acobat XI Pro
Hello, i want to write a VBA Script to search for and highlight text. Until now my Script open the PDF and search for text. But how can i highlight it ? Thank you. Axel My Code : Sub OpenPDFPageView()...
View ArticleRe: find an highlight text with Excel vba an Acobat XI Pro
With Acrobat Javascript you can search for words, retrieve the position of the found words, and add annotations at this positions.
View ArticleRe: extract image from layer(OCG)
Yes, providing the element is an PDEImage and in an optional content group (Which yours appears to be) then the Acrobat SDK and the PDF Library SDK have an API called “PDEElementGetOCMD” that can be...
View ArticleHow can I split a PDF file by megabytes using VBA?
I wrote a routine to split .PDF files by page count and I notice that even if you use the Save method with PDSaveCollectGarbage parameter, the file size of the original file which I copied &...
View ArticleRe: How can I split a PDF file by megabytes using VBA?
It's virtually impossible to predict the size of a portion of a PDF, which might have all sorts of shared data, except by actually splitting. You would need to actually do lots of experimental splits...
View ArticleRe: The AcroPDF.PDF Class is no longer accessible from VisualBasic6 after...
VB6 Solution: Add a "Microsoft WebBrowser control" (ieframe.dll) to a form and use its Navigate method to open the PDF file. Examples:WebBrowser1.Navigate txtFile.TextWebBrowser1.Navigate Filename
View ArticleRe: How can I split a PDF file by megabytes using VBA?
You do know that Acrobat X and later support a Split Pages features that includes Split by Size, right? No need for you to write your own.
View ArticleRe: The AcroPDF.PDF Class is no longer accessible from VisualBasic6 after...
This has been discussed before - VB6 hasn't been supported for a LONG time...
View ArticleRe: How can I split a PDF file by megabytes using VBA?
2 problems with that - 1) It only splits them into a max size of 10 MB, I need 70 MB files. 2) It's not a batch process. I need this to run unattended.
View ArticleRe: How can I split a PDF file by megabytes using VBA?
You mean you need this to run on a server? Otherwise surely the user can click a button to start it?
View ArticleRe: How can I split a PDF file by megabytes using VBA?
Yes. It must run unattended on a server.
View ArticleRe: How can I split a PDF file by megabytes using VBA?
Then you can't use Acrobat at all - since Acrobat cannot legally be used on a server.
View ArticleRe: How can I split a PDF file by megabytes using VBA?
OK....Any ideas how to hack this so that I don't use Acrobat?
View ArticleRe: How can I split a PDF file by megabytes using VBA?
How about if I set it up to run interactively on a desktop?
View ArticleRe: How can I split a PDF file by megabytes using VBA?
The Acrobat SDK is a tool for using Acrobat, so no amount of hacking will solve that. So long as someone is controlling it on a desktop - not an automated process - that's fine. So they can use the...
View ArticleRe: How can I split a PDF file by megabytes using VBA?
Sounds like the real answer is to drop our Acrobat licenses and go with a 3rd party.
View ArticleRe: How can I split a PDF file by megabytes using VBA?
Certainly, if you can't work within the terms of the Acrobat license that is your only choice. Adobe offer a suite of server products, but none of them, so far as I know, offer that choice. And they...
View ArticleHow to get pdf document file path that is running upon AcroRD32.exe(Adobe 10)
How to get pdf document file path that is running upon AcroRD32.exe(Adobe 10) process,as win7 opens 2 processes of AcroRD32.exe for all pdf documents so im unable to knowhow many pdf documents are...
View Article