Package org.apache.xmlgraphics.image.codec.tiff

Examples of org.apache.xmlgraphics.image.codec.tiff.TIFFImage


            this.seekableInput = new MemoryCacheSeekableStream(
                    this.getInputStream());
        }

        final TIFFDecodeParam param = new TIFFDecodeParam();
        final TIFFImage img = new TIFFImage(this.seekableInput, param, 0);
        final TIFFDirectory dir = (TIFFDirectory) img.getProperty(
                "tiff_directory");
        TIFFField fld;
        fld = dir.getField(TIFFImageDecoder.TIFF_IMAGE_WIDTH);
        final long pixelWidth = fld.getAsLong(0);
        this.pixelWidth = (int) pixelWidth;
View Full Code Here

TOP

Related Classes of org.apache.xmlgraphics.image.codec.tiff.TIFFImage

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.