I was looking for a way to encode an animated GIF from a given base64 url โโwithout using external libraries like jquery (I will use it if absolutely necessary). I found results for encoding static images on base64, but they all use canvas , and canvas.toDataURL() will encode only one frame of an animated GIF. Is there a way to encode an animated GIF (or any image for that matter) on base64 without using canvas ?
source share