I have results of a simulation saved as GIF files on my disk and I want to use a suitable plotting library to load and plot them with the x, y axes having specific values, the exported image will also be a GIF file.
So far, I tried loading the file with FileIO and plotting in Plots, PyPlot, Makie but neither of them accepts a GIF file for plotting or I was unable to see a result.
Is there a library or a working example for what I’m trying to do?
Looks a bit like you have an animated gif that loads as a 3D array of pixels? Maybe it’s not animated but it still reads that way, you could try reshaping so the third singleton dimension goes away, or just index into the first dimension like img = gifdata[:, :, 1]/