}
public void transform(String fontFile) throws IOException {
PFMReader reader = new PFMReader();
getLog().debug("Parsing font: " + fontFile);
PFMFile pfm = reader.loadPFM(fontFile);
if (pfm == null) {
throw new IOException("Unable to load PFM file: " + fontFile);
}
Document doc = reader.constructFontXML(pfm, null, null, null, null);