Merge "Add GPSProcessingMethod tag to ExifInterface."

This commit is contained in:
Ray Chen
2010-03-11 19:54:52 -08:00
committed by Android (Google) Code Review
3 changed files with 16 additions and 3 deletions

View File

@@ -74310,7 +74310,7 @@
type="float"
transient="false"
volatile="false"
value="0.0010f"
value="0.001f"
static="true"
final="true"
deprecated="not deprecated"
@@ -83010,6 +83010,17 @@
visibility="public"
>
</field>
<field name="TAG_GPS_PROCESSING_METHOD"
type="java.lang.String"
transient="false"
volatile="false"
value="&quot;GPSProcessingMethod&quot;"
static="true"
final="true"
deprecated="not deprecated"
visibility="public"
>
</field>
<field name="TAG_GPS_TIMESTAMP"
type="java.lang.String"
transient="false"
@@ -214703,7 +214714,7 @@
deprecated="not deprecated"
visibility="public"
>
<parameter name="arg0" type="T">
<parameter name="t" type="T">
</parameter>
</method>
</interface>

View File

@@ -1331,7 +1331,7 @@ public class Camera {
}
/**
* Sets GPS processing method. It will store up to 100 characters
* Sets GPS processing method. It will store up to 32 characters
* in JPEG EXIF header.
*
* @param processing_method The processing method to get this location.

View File

@@ -59,6 +59,8 @@ public class ExifInterface {
public static final String TAG_WHITE_BALANCE = "WhiteBalance";
/** Type is rational. */
public static final String TAG_FOCAL_LENGTH = "FocalLength";
/** Type is String. Name of GPS processing method used for location finding. */
public static final String TAG_GPS_PROCESSING_METHOD = "GPSProcessingMethod";
// Constants used for the Orientation Exif tag.
public static final int ORIENTATION_UNDEFINED = 0;