I have a program that I use to read in a gif image, and it converts it into an indexed-color binary byte array, pixel by pixel at a time. Like, for use in a microcontroller, etc.
But it relies on JavaFx since it uses the image library.
Is there a way to do this without JavaFX? I am not displaying it or anything. Just opening it and reading it one pixel at a time, the ARGB values and converting them into binary indexes (against a palette).
Any ideas? Thanks.
But it relies on JavaFx since it uses the image library.
Is there a way to do this without JavaFX? I am not displaying it or anything. Just opening it and reading it one pixel at a time, the ARGB values and converting them into binary indexes (against a palette).
Any ideas? Thanks.