Tiff Converter
JDeli is able to read and write images as TIFF files, giving a complete TIFF converter between TIFF file format and lots of other image file formats.
JDeli can do this in ONE step with the convert method or separately read or write the TIFF image if you want to process the image in Java.
Convert images to TIFF from Command Line or another language
java -jar jdeli.jar --convert tiff "inputFileOrDir" "outputDir"
Convert into TIFF or from a TIFF image file in Java
JDeli.convert(File inFile, File outFile);
JDeli.convert(InputStream inFile, OutputStream outfile, String format);
byte[] outputData=JDeli.convert(byte[] inputData, String format);
An additional set of methods allow values to be passed in which can give more control over conversion, depending on the image formats being converted (ie different image compression options).
View Javadocs on JDeli.convert
Multiple steps method for converting to or from TIFF file format
Have more questions? Ask us on Discord