Re: Is there APIs available in Acrobat for extracting text from images using C#
Thank you for your reply. Acrobat is not suitable for this task because it is neither technically suitable, nor licensable, for server use. Adobe have a PDF Library which can do text extraction for...
View ArticleRe: Get Unicode char from Bookmark Title
Previously used the API ASTextGetUnicodeCopy with UTF8 encode.Ex: char* title = (char *)ASTextGetUnicodeCopy(titleText, kUTF8); Since the japanese text is converted and resulted with junk characters,...
View ArticleRe: Get Unicode char from Bookmark Title
Please be specific. Please give a hex dump and returned length of the string from the SAME bookmark on a system that works (good UTF-8) and that does not work (bad UTF-8).
View ArticleAvailability of Acrobat 8 SDK suite
How and where from, can I obtain the Acrobat 8 SDK suite? I am running Acrobat 8 Professional. Thanks!
View ArticleRe: How to Print a PDF programmatically without the Adobe Reader Window
The biggest issue still is that there is NO way to know when the PDF is done printing and I mean NO way. I have tried, watching the process, i have tried reading the print queue jobs, I have tried...
View ArticleIs there a way to open pages based on chapter number in a document?
Hello All, I wanted to know if there a way to open pages based on chapter number in a document? Eg: if we input '15' it should go to the page where chapter 15 starts. Thanks in advance.
View ArticleRe: Availability of Acrobat 8 SDK suite
Acrobat 8 (and it's associated SDK) are no longer supported by Adobe.
View ArticleRe: How to Print a PDF programmatically without the Adobe Reader Window
Let me see - you are comparing the use of paid-for commercial products (such was Microsoft Office, for use with Word and Excel files) to a COMPLETELY FREE product (Adobe Reader). If you were to use our...
View ArticleRe: Is there a way to open pages based on chapter number in a document?
If you setup the PDF with appropriate chapter labels for the pages - yes.
View ArticleRe: Availability of Acrobat 8 SDK suite
And it might be worth mentioning that nobody else ever had the right to share or distribute it. So if Adobe do not supply it, you cannot legally get it. You will probably have to upgrade your copies...
View ArticleRe: How to Print a PDF programmatically without the Adobe Reader Window
I am not comparing them; we do not edit PDFs, we do not create PDFs from scratch, we do not create PDFs from templates by programmatically adding data. Plus Word/Excel does have a FREE library call...
View ArticleMulti Language Titles in Outline objects
Section 14.9.2.4Multi-language Text Arrays of PDF 1.7 describes multi language text arrays. Is there a way to apply these to object dictionaries, for example, the Title field in Outline objects?
View ArticleRe: Multi Language Titles in Outline objects
@Irosenth, Thanks for the quick answer. Kind of wierd, though. You can embed language dependent text in content streams, but not in object dictionary text that will be displayed. I wonder if it can go...
View ArticleRe: Multi Language Titles in Outline objects
You're not really putting it in the content stream - you are using the tagged PDF properties to store it "attached" to the content. BUT remember that it doesn't impact display - just such things as...
View ArticleRe: How to Print a PDF programmatically without the Adobe Reader Window
Hi, it's some time ago I looked into this area. So far as I remember right you have 2 options. 1. Look into the old DDE commands (if it is still supported) 2. If the print startet you can try to close...
View ArticleAre CTMs premultiplied or postmultiplied?
PDF Reference, Table 57, Page 127. I was under the impression (based on working code) that as operators are scanned top to bottom, the existing CTM is placed on the LHS and the newcoming matrix on the...
View ArticleRe: Are CTMs premultiplied or postmultiplied?
If the CTM is CTM and there is a new matrix to apply M, the operation isCTM = M . CTM Can you point out cases where it seems to work differently?
View ArticleRe: Are CTMs premultiplied or postmultiplied?
Test Screen Name wrote: Can you point out cases where it seems to work differently? At this stage, declaring that I am a little confused is an understatement: have a couple of versions of my own...
View ArticleRe: Are CTMs premultiplied or postmultiplied?
Searchers should find this site very helpful: http://www.bluebit.gr/matrix-calculator/ -RFH
View Article