Hi,
I am trying to use Aspose cells to convert excel file to TIFF format in Java.
I want the input to be a InputStream and output as a Stream too.
Any code examples to perform this is appreciated.
Here is what I use right now.. but I need input and output to be streams.
Workbook workbook = new Workbook(fileName);
workbook.save(outDir + fileName + ".tiff", SaveFormat.TIFF);
Thank You.