I was working with iText in java and tried to make a simple program that creates a PDF file with Greek text in it. Here is part of my code:

(...)
**public String url = "C:/Windows/Fonts/arial.ttf";**
public int size = 12;
**public String GREEK_CODEPAGE = "Cp1253";**
(...)
    public void createPdf(String filename, String INPUT)throws DocumentException, IOException {
        Document document = new Document();
        PdfWriter.getInstance(document, new FileOutputStream(filename));
        document.open();
        **BaseFont fonty = BaseFont.createFont(url , GREEK_CODEPAGE , true);
        Font myfonty = new Font(fonty, size, Font.NORMAL);
        document.add(new Paragraph(INPUT, myfonty));**
        document.close();        
    }

So, I call this method and it creates my PDF file, but for some reason the characters "Δ"(Capital Delta) and "Ω"(Capital Omega) have been replaced everywhere in my text with spaces (all other characters, including lower delta and lower omega, are okay). I'm not sure if this is some glitch, or something I did. I tried using other codepages and fonts that support Greek characters, but those 2 characters were still missing. Can you help me? Thanks in advance.

link|improve this question
Where does "INPUT" come from? I ask, because perhaps the "Δ" and "Ω" look liek they are capital greek letters but might be in fact something completely different. The second option is that the Arial font you are using simply lacks the two letters for some reason. – Angel O'Sphere Jul 26 '11 at 8:49
INPUT comes from main. In this case, it is a String of all Greek letters (both caps and low), toned vowels, exclusive punctuation marks and some symbols. The Arial font is the standard Windows one, which has no such problem in Word, Paint, etc. – Kostas Jul 27 '11 at 7:16
feedback

1 Answer

try the encoding "Identity-H" instead of Cp1253

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.