private FontTable GetTable(string name)
 {
     try {
         return(reader.GetTable(name));
     }
     catch {
         throw new Exception(String.Format(
                                 "Unable to retrieve table {0} from font {1}", name, FaceName));
     }
 }