Package org.apache.commons.imaging.formats.tiff.datareaders

Examples of org.apache.commons.imaging.formats.tiff.datareaders.DataReaderStrips


        public DataReader getDataReader(final TiffDirectory directory,
                final PhotometricInterpreter photometricInterpreter,
                final int bitsPerPixel, final int[] bitsPerSample, final int predictor,
                final int samplesPerPixel, final int width, final int height, final int compression,
                final ByteOrder byteorder) throws IOException, ImageReadException {
            return new DataReaderStrips(directory, photometricInterpreter,
                    bitsPerPixel, bitsPerSample, predictor, samplesPerPixel,
                    width, height, compression, byteorder, rowsPerStrip, this);
        }
View Full Code Here

TOP

Related Classes of org.apache.commons.imaging.formats.tiff.datareaders.DataReaderStrips

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.