outputSet.byteOrder, new Double(0.3));
TiffOutputDirectory exifDirectory = outputSet
.getOrCreateExifDirectory();
// make sure to remove old value if present (this method will
// not fail if the tag does not exist).
exifDirectory
.removeField(TiffConstants.EXIF_TAG_APERTURE_VALUE);
exifDirectory.add(aperture);
}
{