Package ar.com.hjg.pngj

Examples of ar.com.hjg.pngj.PngReader


     *
     * @param sampleLegendFile
     * @return
     */
    private Dimension getSizeFromSample(File sampleLegendFile) {
        PngReader pngReader = null;
        try {
            // reads size using PNGJ reader, that can read metadata without reading
            // the full image
            pngReader = new PngReader(sampleLegendFile);
            return new Dimension(pngReader.imgInfo.cols, pngReader.imgInfo.rows);
        } finally {
            if (pngReader != null) {
                pngReader.close();
            }
        }
    }
View Full Code Here

TOP

Related Classes of ar.com.hjg.pngj.PngReader

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.