Re: thumbnail generation in windows service
I'm not using Acrobat SDK.I'm using "windows 7 api codepack", which internally uses IShellItemImageFactory interface (Windows).The Interface is implemented by Adobe Reader, I think.
View ArticleRe: thumbnail generation in windows service
I think section 3.2 of the Adobe Reader license agreement means that the technical failure is not relevant. http://wwwimages.adobe.com/content/dam/Adobe/en/legal/licenses-terms/pdf/Reader_11.0.pdf page 86
View ArticleRe: Bookmarks page ranges are modified randomly while merging two PDF files.
PDInsertAll flag is resolving our issue. Thanks for your support. Is it possible in 'InterAppCommunication' ? API: long CAcroPDDoc::InsertPages(long nInsertPageAfter, LPDISPATCH iPDDocSource, long...
View ArticleHow to get working spaces from color setup preferences ?...
I'm trying to get and set the CMYK Working Space from the Color Setup tab in the Acrobat Preferences dialog.I can set it manually in the dialog, but when trying to access this setting in the code using...
View ArticleRe: Bookmarks page ranges are modified randomly while merging two PDF files.
I don't believe so, no.
View ArticleRe: How to get working spaces from color setup preferences ?...
You should be using the Color APIs (ACxxx). Consult the SDK for details.
View ArticleRe: How to get working spaces from color setup preferences ?...
Thanks - this is great ! I was able to find the color profile using the Color API like this:AC_Profile workingProfile;err = ACGetWorkingSpaceProfile(kACWorkingCMYK, &workingProfile); But how do I...
View ArticleRe: How to get working spaces from color setup preferences ?...
You can't - nor should you. What would be the use case for changing the user's working space profiles?
View ArticleRe: How to get working spaces from color setup preferences ?...
I have the color space setting in an external (private) text file that the user choose as his "profile", so I want to use the color space value from that file to set the working color space. Currently...
View ArticleRe: Missing ligature font chars
Yes, I know, If I copy and paste text I cannot see that chars. I don't understand why a pdf->ps->pdf conversion is able to fix the problem. After the conversion the new pdf has 'ff' chars if I...
View ArticleRe: Remove hidden text using SDK api
I have found in sdk api the following method: PDWordFinderAcquireVisibleWordList()"Finds all words on the specified page that are visible in the given optional-content context" what does it means...
View ArticleRe: PDWordFinder does not extract text in order
I need to extract text in 'reading' order, but it's not very clear how to use PDWordFinderAcquireWordList parameters. Can I use different 'reading order' for PDDocCreateWordFinderUCS method, or can I...
View ArticleRe: Missing ligature font chars
It isn't guaranteed to solve the problem - in fact, it will only do so in VERY SPECIFIC use cases. It does it because this process is COMPLETELY REWRITING the PDF. NONE of the original PDF remains,...
View ArticleRe: Remove hidden text using SDK api
Visible - as in drawn on the page. Has NOTHING to do with hidden text (of any type). Do you know what Optional Content is in PDF? If not, consult the PDF standard or other books on the subject. This...
View ArticleRe: PDWordFinder does not extract text in order
If you just want the text, there are higher level APIs than PDWordFinder to do it. You can even have Acrobat return not only text, but RTF. Or even a full conversion to something such as XML, HTML,...
View ArticleRe: How to get working spaces from color setup preferences ?...
ACGetWorkingSpaceProfile() seems to be the API you want.
View ArticleHow to find sentences from PDF?
I think finding paragraph is out of the question. So, if I ask, is it possible to break the text content into sentences? May be using the sentence end marker like (.) Dot?I'm not exactly sure this is...
View ArticleChange Printer in Acrobat from VBA
I am trying to set the printer selected in Excel to be the printer selected in Acrobat at runtime using VBA and Acrobat objects. I am unsuccessful at changing the printer name. I tried but was unable...
View ArticleRe: PDWordFinder does not extract text in order
No, I retrive also a lot of other informations using acrobat SDK. I tried using xySortTable instead of the WordFinder and it seems I can get some words in a better order. You suggest use the xyTable...
View Article