Package org.apache.sanselan.formats.tiff

Examples of org.apache.sanselan.formats.tiff.TiffImageMetadata.findField()


    @Override
    public Date readOriginalTime(File jpeg) throws IOException, ParseException{
        try{
            final TiffImageMetadata exif = SanselanExifReader.getExif(jpeg);
            String dateString = (String) exif.findField(TiffConstants.EXIF_TAG_DATE_TIME_ORIGINAL).getValue();
            //interpret the dateString as an UTC dateTime value
            return parseExifDate(dateString);
        } catch (ImageReadException irx){
            throw toIOException(irx, jpeg);
        } catch (ImageWriteException iwx){
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.