I have a pdf file that contains utf-8 characters (İ,ğ,ı and arabic letter etc..). How to parse this file?
I use itext and pdfBox but I see "çekti¤i k夛da" instead of "çektiği kağıda". How can I resolve this ?
|
|
Call the below function escape(String char) for each character. It will return you the UTF-8 character. This function is also from the PDFBox.
This is a similar question. Please have a look. |
|||
|
|
|
As Bobrovsky mentions, it may look good, while the underlying encoding is not entirely correct. A glyhp that looks like an X in the PDF viewer may not be encoded internally as the character X. You can easily test this by copy-pasting the text from the Adobe PDF Reader to a text editor that supports the character set. If it copy-pastes OK, then extraction is possible, otherwise it is not (without taking manual measures such as a customized mapping). |
|||||||||||
|
|
As no sample has yet been provided, I created arabic test data myself (well, actually I borrowed the code for creating the test data from some posts on the itext-questions mailing list) and a test which parses those data:
The String LAWRENCE_OF_ARABIA phonetically somewhat aproximates Lawrence of Arabia. The output of the text is:
While this is not identical to the input, a quick look into the unicode tables reveals that the input is from the Unicode Range "Arabic" and the output is from the Unicode Range "Arabic Presentation Forms-B". Additionally the output is left-to-right while the input is right-to-left. I don't know Arabic myself and, thus, cannot say how accurate the output is, but the parsed characters definitively are from an appropriate Unicode range. As far as can be told without access to the PDF the original poster works with, therefore, the problem does not seem to be the parsing but instead the proper use of the output of the parsers. |
|||||||
|
|
Sometimes PDFs are generated with different encodings specified in actual font bytes and PDF structures describing the font. In such cases text gets displayed just fine but might not be properly extracted. I've seen this often for Western European languages. To overcome the issue we added special text extraction option to Docotic.Pdf library. You might want to give it a try. Here are couple of useful links: Disclaimer: I work for the vendor of the library. |
|||
|
|
|
You can extract correct text in C#/Java/... with help from 'pdftron.PDF.TextExtractor' as follows:
to extract word by word:
If you need to use RegExp to search use TextSearch class etc. Disclaimer: I am a PDFNet developer. |
|||
|
|