ImageInfo info = new ImageInfo("dirOnly.tif", MimeConstants.MIME_TIFF);
ImageSize size = new ImageSize();
// Size data can be retrieve by parsing the directory table in the TIFF
size.setSizeInPixels(1728, 2266);
size.setResolution(203, 192);
size.calcSizeFromPixels();
info.setSize(size);
sut = new ImageLoaderRawCCITTFax();
ImageRawCCITTFax rawImage = (ImageRawCCITTFax) sut.loadImage(info, null, session);
assertEquals(2, rawImage.getCompression());