* @param input Absolute path to image file to be converted to tiff.
* @return File object for temporary image file
* @throws Exception a I/O or Unsupported format exception
*/
public static File createTempTiff(String input) throws Exception {
BufferedImage bi = new DjatokaReader().open(input);
if (LOGGER.isDebugEnabled()) {
LOGGER.debug("BufferedImage created with h/w: {}/{}", bi.getHeight(), bi.getWidth());
}