Package geodress.model

Examples of geodress.model.Picture


   *             may cause an exception
   */
  @Before
  public void setUp() throws Exception {
    /* latitude: +39.50972222 longitude: +2.74916667 */
    testPictureWithExifBeach = new Picture(new File("testfiles"
        + File.separator + "beach.jpg"));
    testPictureWithExifBeach.registerMetaDataReader(new SanselanReader());

    /* latitude: +39.50976 longitude: +2.74928 */
    testPictureWithExifSky = new Picture(new File("testfiles"
        + File.separator + "sky.jpg"));
    testPictureWithExifSky.registerMetaDataReader(new SanselanReader());

    testPictureWithoutExif = new Picture(new File("testfiles"
        + File.separator + "field.jpg"));
    testPictureWithoutExif.registerMetaDataReader(new SanselanReader());
  }
View Full Code Here

TOP

Related Classes of geodress.model.Picture

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.