I have six gifs. They're the exact same dimensions (375x211), same duration, and same FPS. I want to be able to combine them to make a perfect 3x2 grid where they can all play simultaneously next to one another.
I've tried ImageMagick however that screws up in a number of ways. Firstly, it combines all six gifs into a single gif of the same length by only playing a fraction of each gif, which it tiles to my 3x2 grid, but secondly, it completely ruins the quality. It's like watching the gif through a blizzard.
Command used:
magick montage *.gif -geometry +0+0 -tile 3x2 montage.gif
This works fine on ordinary JPGs and PNGs so why does it behave this way with GIFs? Is there any way I can get my desired effect (whether with ImageMagick or not)? Ideally, this would all be in one command without any intermediary steps, but I'm willing to make sacrifices.