Example usage for org.apache.commons.imaging.formats.tiff.constants ExifTagConstants EXIF_TAG_BRIGHTNESS

List of usage examples for org.apache.commons.imaging.formats.tiff.constants ExifTagConstants EXIF_TAG_BRIGHTNESS

Introduction

In this page you can find the example usage for org.apache.commons.imaging.formats.tiff.constants ExifTagConstants EXIF_TAG_BRIGHTNESS.

Prototype

TagInfoAscii EXIF_TAG_BRIGHTNESS

To view the source code for org.apache.commons.imaging.formats.tiff.constants ExifTagConstants EXIF_TAG_BRIGHTNESS.

Click Source Link

Usage

From source file:de.aikiit.fotorenamer.image.MetaDataExtractorTest.java

/**
 * Checks assertion failure with null parameter.
 * @throws Exception in case of errors./*from   w w w.jav a 2  s  .c  om*/
 */
@Test(expected = AssertionError.class)
public final void checkAssertionErrors() throws Exception {
    assertNull(MetaDataExtractor.getExifMetadata(null, ExifTagConstants.EXIF_TAG_BRIGHTNESS));
}