Package com.lightcrafts.image.types

Examples of com.lightcrafts.image.types.RawImageInfo


    /**
     * Read all metadata that, for this class, does nothing.
     */
    protected void readAllDirectories() throws IOException {
        final RawImageInfo info;
        try {
            info = (RawImageInfo)m_imageInfo.getAuxiliaryInfo();
        }
        catch ( LightCraftsException e ) {
            return;
        }
        final DCRaw dcraw = info.getDCRaw();

        final ImageMetadata metadata = m_imageInfo.getCurrentMetadata();
        final EXIFDirectory exifDir =
            (EXIFDirectory)metadata.getDirectoryFor(
                EXIFDirectory.class, true
View Full Code Here

TOP

Related Classes of com.lightcrafts.image.types.RawImageInfo

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.