Package org.apache.commons.imaging.common

Examples of org.apache.commons.imaging.common.IImageMetadata


    public IImageMetadata getMetadata(final ByteSource byteSource, final Map<String, Object> params)
            throws ImageReadException, IOException {
        final RgbeInfo info = new RgbeInfo(byteSource);
        boolean canThrow = false;
        try {
            final IImageMetadata ret = info.getMetadata();
            canThrow = true;
            return ret;
        } finally {
            IoUtils.closeQuietly(canThrow, info);
        }
View Full Code Here

TOP

Related Classes of org.apache.commons.imaging.common.IImageMetadata

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.