Back to project page SimpleReflectedLightMeter.
The source code is released under:
MIT License
If you think the Android project SimpleReflectedLightMeter listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
/* * ExifConst.java// w w w . j a va 2 s. c o m * * (c) 2013 mugcupsoup@gmail.com * * Licensed under the MIT license. * http://www.opensource.org/licenses/mit-license */ package com.gmail.mugucupsoup.android.Exif; public interface ExifConst { public static final int TAG_TYPE_BYTE = 1; public static final int TAG_TYPE_ASCII = 2; public static final int TAG_TYPE_SHORT = 3; public static final int TAG_TYPE_LONG = 4; public static final int TAG_TYPE_RATIONAL = 5; public static final int TAG_TYPE_UNDEFINED = 7; public static final int TAG_TYPE_SLONG = 9; public static final int TAG_TYPE_SRATIONAL = 10; public static final int THUMB_JPEG = 0; public static final int THUMB_TIFF = 1; }