Package org.jpedal.fonts.tt

Examples of org.jpedal.fonts.tt.FontFile2


    static int createChecksum(byte[] table) {

        int checksumValue=0;

        FontFile2 checksum=new FontFile2(table,true);

        int longCount=((table.length+3)>>2);

        for(int j=0;j<longCount;j++){
            checksumValue=checksumValue+checksum.getNextUint32();
        }

        return checksumValue;
    }
View Full Code Here

TOP

Related Classes of org.jpedal.fonts.tt.FontFile2

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.