Putkerntab() private method

private Putkerntab ( ) : void
return void
Beispiel #1
0
        /**
         * Converts a PFM file into an AFM file.
         * @param inp the PFM file
         * @param outp the AFM file
         * @throws IOException on error
         */
        public static void Convert(RandomAccessFileOrArray inp, Stream outp)
        {
            Pfm2afm p = new Pfm2afm(inp, outp);

            p.Openpfm();
            p.Putheader();
            p.Putchartab();
            p.Putkerntab();
            p.Puttrailer();
            p.outp.Flush();
        }
Beispiel #2
0
 /**
 * Converts a PFM file into an AFM file.
 * @param inp the PFM file
 * @param outp the AFM file
 * @throws IOException on error
 */    
 public static void Convert(RandomAccessFileOrArray inp, Stream outp) {
     Pfm2afm p = new Pfm2afm(inp, outp);
     p.Openpfm();
     p.Putheader();
     p.Putchartab();
     p.Putkerntab();
     p.Puttrailer();
     p.outp.Flush();
 }