DCTDecode filter used for image with Indexed color space?
I've seen examples of images in PDF that have BitsPerComponent=8, with an Indexed Color Space, but the filter is DCTDecode. This doesn't seem intuitive to me, as JPG supports 24-bit RGB and 8-bit...
View ArticleHow to get number of underlined words or highlighted words?
Is there any way to get underlined annotated words or words which are highlighted with specific color from a pdf file usng acrobat javascript? I tried but could not able to read.
View ArticleRe: DCTDecode filter used for image with Indexed color space?
DCTDecode is entirely legal for 1-component (greyscale) samples as you've noted. There is no problem there. Remember, that applying a filter (and later decoding it) is entirely separate from the...
View ArticleRe: How to get number of underlined words or highlighted words?
It's not impossible, I think. If you can retrieve information on each annotation of a given type, you can get a list of the rectangles applicable.Then you can use PDPageGetNthWords to iterate each word...
View ArticleRe: How to get number of underlined words or highlighted words?
Still I am unable to parse the annotations. Could you help out.
View ArticleRe: createDataObject() method is not working in Adobe Reader
What you should do is create the data object in advance, and then use setDataObjectContents to populate it with the data you want. This method doesn't have the limitations that createDataObject has and...
View Articlehow to get a specific page's field values in pdf ?
I am using acrobat javascript to read a pdf file. Is there any way to read textfield values which are present in a specific page?
View ArticleRe: How to get number of underlined words or highlighted words?
What problem do you have?
View ArticleRe: How to get number of underlined words or highlighted words?
I am able to access the text. but I could not able to get the highlighted text count and underlined text count from a pdf using javascript. Is there any method or proprty in the javascript to access...
View ArticleRe: How to get number of underlined words or highlighted words?
Was my previous reply not clear? Let me be absolutely clear, this information is not stored in a PDF. It would be up to you to do calculations based on the location of all words (definitely available)...
View ArticleRe: How to get number of underlined words or highlighted words?
What APIs did you try? Have you reviewed the section of the documentation about the Annotation object?
View ArticleRe: how to get a specific page's field values in pdf ?
Yes. Have you download the Acrobat SDK and read the JavaScript documentation?
View ArticleIs there any way to know that model tree is open or not ?
Hello , can anyone tells me how i can check if currently model tree is open or not using c++ sdk or java script or some other way? Thanks,
View ArticleHide 3D annotation toolbar
Hello , i am developing c++ plugin which insert 3 annotation in page. I want to know ,how i can hide the toolbar of that 3D annotation using c++ sdk or java script or some other way ? Thanks,
View ArticleHelp with word under cursor position
Hej, I have now tried for some time to make to following with no success: My plugin for adobe reader need to be able to return me the index (according to the page) of the word where the selection...
View ArticleRe: Help with word under cursor position
Get the words in order, and for each word, get its quads. Step through the quads, seeing if the cursor position falls inside one of those quads. If so, you have your word index. More than one word...
View ArticleRe: Help with word under cursor position
Thank you very much it working really good! used: AVDevRect test3; test3.bottom = y; test3.top = y + 1; test3.right = x + 1; test3.left = x; ASFixedRect...
View ArticleLate binding to adobe reader plugin.
Hi. I have build my own Plugin for Adobe Reader, in the process of getting the certificate. The PlugIn if for a reader program so the program can extract words, read them out loud and highlight the...
View ArticleRe: Late binding to adobe reader plugin.
There is only one type of way to load plugins in Reader. If you need something special, you'll have to do it yourself.
View Article