636465666768697071
private FontDataInputSource input; public AfmFont(final File font, final boolean embeddable) throws IOException { final FontDataInputSource fis = new FileFontDataInputSource(font); initialize(fis, embeddable); fis.dispose(); }
56575859606162
private boolean embeddable; public PfmFont(final File font, final boolean embeddable) throws IOException { this(new FileFontDataInputSource(font), embeddable); }
221222223224225226227
public TrueTypeFont(final File filename, final long offset, final int collectionIndex) throws IOException { this(new FileFontDataInputSource(filename), offset, collectionIndex); }