Package icc.types

Examples of icc.types.ICCProfileVersion


    public static ICCProfileVersion getICCProfileVersion (byte [] data, int offset) {
        byte major = data [offset];
        byte minor = data [offset+byte_size];
        byte resv1 = data [offset+2*byte_size];
        byte resv2 = data [offset+3*byte_size];
        return new ICCProfileVersion (major, minor, resv1, resv2); }
View Full Code Here

TOP

Related Classes of icc.types.ICCProfileVersion

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.