Lines Matching defs:imageType

4774      * @param imageType The image type from which to retrieve metadata. Use IFD_TYPE_PRIMARY for
4779 private void getJpegAttributes(ByteOrderedDataInputStream in, int jpegOffset, int imageType)
4863 readExifSegment(bytes, imageType);
4896 mAttributes[imageType].put(TAG_IMAGE_LENGTH, ExifAttribute.createULong(
4898 mAttributes[imageType].put(TAG_IMAGE_WIDTH, ExifAttribute.createULong(
5233 private void readExifSegment(byte[] exifBytes, int imageType) throws IOException {
5241 readImageFileDirectory(dataInputStream, imageType);
5521 private void retrieveJpegImageSize(ByteOrderedDataInputStream in, int imageType)
5525 (ExifAttribute) mAttributes[imageType].get(TAG_IMAGE_LENGTH);
5527 (ExifAttribute) mAttributes[imageType].get(TAG_IMAGE_WIDTH);
5532 (ExifAttribute) mAttributes[imageType].get(TAG_JPEG_INTERCHANGE_FORMAT);
5538 getJpegAttributes(in, jpegInterchangeFormat, imageType);
5769 private void updateImageSizeValues(ByteOrderedDataInputStream in, int imageType)
5773 (ExifAttribute) mAttributes[imageType].get(TAG_DEFAULT_CROP_SIZE);
5776 (ExifAttribute) mAttributes[imageType].get(TAG_RW2_SENSOR_TOP_BORDER);
5778 (ExifAttribute) mAttributes[imageType].get(TAG_RW2_SENSOR_LEFT_BORDER);
5780 (ExifAttribute) mAttributes[imageType].get(TAG_RW2_SENSOR_BOTTOM_BORDER);
5782 (ExifAttribute) mAttributes[imageType].get(TAG_RW2_SENSOR_RIGHT_BORDER);
5812 mAttributes[imageType].put(TAG_IMAGE_WIDTH, defaultCropSizeXAttribute);
5813 mAttributes[imageType].put(TAG_IMAGE_LENGTH, defaultCropSizeYAttribute);
5828 mAttributes[imageType].put(TAG_IMAGE_LENGTH, imageLengthAttribute);
5829 mAttributes[imageType].put(TAG_IMAGE_WIDTH, imageWidthAttribute);
5832 retrieveJpegImageSize(in, imageType);