Package icc.types

Examples of icc.types.XYZNumber


    public static XYZNumber getXYZNumber (byte [] data, int offset) {
        int x,y,z;
        x = getInt (data,offset);
        y = getInt (data,offset+int_size);
        z = getInt (data,offset+2*int_size);
        return new XYZNumber (x,y,z); }
View Full Code Here

TOP

Related Classes of icc.types.XYZNumber

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.