fop-dev  

DO NOT REPLY [Bug 44993] getPostScriptName() returns wrong name

bugzilla
Tue, 13 May 2008 16:32:10 -0700

https://issues.apache.org/bugzilla/show_bug.cgi?id=44993





--- Comment #1 from Fred Sickert <[EMAIL PROTECTED]>  2008-05-13 16:31:46 PST 
---
Here is the example 

import org.apache.fop.fonts.truetype.*;
 import java.io.*;
 class TTFName 
{
        public static void main(String[] args) 
        {
 try {
        TTFFile ttf = new TTFFile();
        FontFileReader reader = new
FontFileReader("c:\\windows\\fonts\\Arialbd.ttf");
        ttf.readFont(reader);
        ttf.printStuff();
        System.out.println(ttf.getPostScriptName());
   } catch (Exception e) {
            e.printStackTrace();
            }


        }
}


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.