Add support for TIFF as an output format.
The COMPARISON.md feature comparison identifies this as a gap between JairoSVG and EchoSVG.
Similar to JPEG output, TIFF can be added via Java's ImageIO:
TiffSurface class (similar to PngSurface)ImageIO.write(image, "TIFF", outputStream) in the finish() methodtoTiff() method to ConversionBuildertiff to the CLI format optionsNote: TIFF support in ImageIO may require the javax.imageio TIFF plugin (included in JDK 9+). Since JairoSVG requires Java 25+, this is available by default.