Examples of MRWMetadataReader


Examples of com.lightcrafts.image.metadata.MRWMetadataReader

     * {@inheritDoc}
     */
    public void readMetadata( ImageInfo imageInfo )
        throws BadImageFileException, IOException, UnknownImageTypeException
    {
        final MRWMetadataReader reader = new MRWMetadataReader( imageInfo );
        reader.readMetadata();
        //
        // Store the TIFF ("TTW") block inside the MRWImageInfo so it can be
        // used later in getPreviewImage().
        //
        final MRWImageInfo info = (MRWImageInfo)imageInfo.getAuxiliaryInfo();
        info.setTIFFBlock( reader.getTIFFBlock() );
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.