OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Exif
(Results
1 - 5
of
5
) sorted by null
/packages/apps/Camera/src/com/android/camera/
Exif.java
21
import com.android.gallery3d.
exif
.ExifInvalidFormatException;
22
import com.android.gallery3d.
exif
.ExifParser;
23
import com.android.gallery3d.
exif
.ExifTag;
29
public class
Exif
{
67
Log.w(TAG, "Failed to read
EXIF
orientation", e);
70
Log.w(TAG, "Failed to read
EXIF
orientation", e);
/packages/apps/Camera2/src/com/android/camera/
Exif.java
21
import com.android.camera.
exif
.ExifInterface;
25
public class
Exif
{
29
ExifInterface
exif
= new ExifInterface();
local
31
exif
.readExif(jpegData);
33
Log.w(TAG, "Failed to read
EXIF
data", e);
35
return
exif
;
39
public static int getOrientation(ExifInterface
exif
) {
40
Integer val =
exif
.getTagIntValue(ExifInterface.TAG_ORIENTATION);
51
ExifInterface
exif
= getExif(jpegData);
52
return getOrientation(
exif
);
[
all
...]
/packages/apps/Gallery2/src/com/android/gallery3d/data/
Exif.java
21
import com.android.gallery3d.
exif
.ExifInterface;
26
public class
Exif
{
36
ExifInterface
exif
= new ExifInterface();
local
38
exif
.readExif(is);
39
Integer val =
exif
.getTagIntValue(ExifInterface.TAG_ORIENTATION);
46
Log.w(TAG, "Failed to read
EXIF
orientation", e);
52
* Returns an
exif
interface instance for the given JPEG image.
54
* @param jpegData a valid JPEG image containing
EXIF
data
57
ExifInterface
exif
= new ExifInterface();
local
59
exif
.readExif(jpegData)
[
all
...]
/packages/apps/LegacyCamera/src/com/android/camera/
Exif.java
21
public class
Exif
{
58
// Break if the marker is
EXIF
in APP1.
72
// JEITA CP-3451
Exif
Version 2.2
/frameworks/opt/photoviewer/src/com/android/ex/photo/util/
Exif.java
24
public class
Exif
{
59
where length is a variable int (around 30KB above) read from the
EXIF
headers.
72
// JPEG image files begin with FF D8. Only JPEG images have
EXIF
data.
108
// Break if the marker is
EXIF
in APP1.
127
// JEITA CP-3451
Exif
Version 2.2
Completed in 144 milliseconds