Examples of SonyType6MakernoteDirectory


Examples of com.drew.metadata.exif.makernotes.SonyType6MakernoteDirectory

/** @author Drew Noakes http://drewnoakes.com */
public class SonyType6MakernoteTest
{
    @Test public void testSonyType6Makernote() throws Exception
    {
        SonyType6MakernoteDirectory directory = ExifReaderTest.processBytes("Tests/Data/sonyType6.jpg.app1.0", SonyType6MakernoteDirectory.class);

        assertNotNull(directory);
        assertFalse(directory.hasErrors());

        SonyType6MakernoteDescriptor descriptor = new SonyType6MakernoteDescriptor(directory);

        assertEquals("2.00", descriptor.getMakernoteThumbVersionDescription());
    }
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.