imaging question in python
from maya_the_good_apple@sh.itjust.works to programming@programming.dev on 16 Apr 12:53
https://sh.itjust.works/post/58619938
from maya_the_good_apple@sh.itjust.works to programming@programming.dev on 16 Apr 12:53
https://sh.itjust.works/post/58619938
How do I convert a batch of .pngs into a single .apng?
#programming
threaded - newest
I’d use ImageMagick, but if you want to do it in plain* Python, here’s an example: stackoverflow.com/a/79683407
* Well, you’ll need pyAPNG.
I used pillow. It has apng support now.
On top of the other advice, Pillow is definitely worth considering for this. It’s a solid library that fits this use case perfectly.
I got it to work. Yay!
sh.itjust.works/…/ae3e684e-dacd-4b98-8306-bc68715…