I want to read TGA file to BufferedImage
. How I can do it without libraries?
Now there is function:
(defn load-image [filename]
(ImageIO/read (File. filename)))
This function read jpeg file successfully, but return nil
instead of BufferedImage for TGA file.