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

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


        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 DataReaderTiled(directory, photometricInterpreter,
                    tileWidth, tileLength, bitsPerPixel, bitsPerSample,
                    predictor, samplesPerPixel, width, height, compression,
                    byteOrder, this);
        }
View Full Code Here

TOP

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

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.