Home
last modified time | relevance | path

Searched refs:imageWidthAttribute (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/media/java/android/media/
DExifInterface.java1933 ExifAttribute imageWidthAttribute = in getThumbnailBitmap() local
1935 if (imageLengthAttribute != null && imageWidthAttribute != null) { in getThumbnailBitmap()
1937 int imageWidth = imageWidthAttribute.getIntValue(mExifByteOrder); in getThumbnailBitmap()
2510 ExifAttribute imageWidthAttribute = in getRafAttributes() local
2513 mAttributes[IFD_TYPE_PRIMARY].put(TAG_IMAGE_WIDTH, imageWidthAttribute); in getRafAttributes()
3115 ExifAttribute imageWidthAttribute = in retrieveJpegImageSize() local
3118 if (imageLengthAttribute == null || imageWidthAttribute == null) { in retrieveJpegImageSize()
3291 ExifAttribute imageWidthAttribute = (ExifAttribute) map.get(TAG_IMAGE_WIDTH); in isThumbnail() local
3293 if (imageLengthAttribute != null && imageWidthAttribute != null) { in isThumbnail()
3295 int imageWidthValue = imageWidthAttribute.getIntValue(mExifByteOrder); in isThumbnail()
[all …]
/frameworks/support/exifinterface/src/android/support/media/
DExifInterface.java4401 ExifAttribute imageWidthAttribute =
4403 if (imageLengthAttribute != null && imageWidthAttribute != null) {
4405 int imageWidth = imageWidthAttribute.getIntValue(mExifByteOrder);
4994 ExifAttribute imageWidthAttribute =
4997 mAttributes[IFD_TYPE_PRIMARY].put(TAG_IMAGE_WIDTH, imageWidthAttribute);
5514 ExifAttribute imageWidthAttribute =
5517 if (imageLengthAttribute == null || imageWidthAttribute == null) {
5701 ExifAttribute imageWidthAttribute = (ExifAttribute) map.get(TAG_IMAGE_WIDTH);
5703 if (imageLengthAttribute != null && imageWidthAttribute != null) {
5705 int imageWidthValue = imageWidthAttribute.getIntValue(mExifByteOrder);
[all …]