Examples of JFIFHeaderReader


Examples of com.alibaba.simpleimage.codec.jpeg.ext.JFIFHeaderReader

    public JPEGDecoder(ImageInputStream in, boolean fastIDCTMode, boolean supportICC){
        this.in = in;
        this.fastIDCTMode = fastIDCTMode;
        this.supportICC = supportICC;

        super.addExtendHeaderReader(MarkerConstants.APP0, new JFIFHeaderReader());
        if (supportICC) {
            super.addExtendHeaderReader(MarkerConstants.APP2, new ICCProfileReader());
        }
        super.addExtendHeaderReader(MarkerConstants.APP14, new AdobeHeaderReader());
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.