As title.
I'm working on a little JavaFX program that reads in animated gifs, applies an a number of artistic filters to each frame and then rebuilds the gif and displays it in a JavaFX window.
I'm working with the Apache Commons imaging library at the moment, and that works fine for reading data but doesn't seem to have any way to write an animated Gif.
Every library I've managed to find so far has either had this same problem, has been missing features like the ability to set disposal methods and frame delays, or is old enough to predate modules and refuses to load due to broken module paths.
Does anybody know of a more up to date one I could use, or should I just bite the bullet and write my own encoder?