Hello, I'm having a hard time displaying Animated GIF in my script, I know the GD library does not display animated GIF, I'd like to know how I do it.
I just want to send the Animated GIF from a URL to the browser, for example:
//As Funções são apenas para ilustração
$GIF = Pegar_GIF_Animado('url.gif');
header('Content-Type: image/gif');
Exibir_GIF($GIF);
Thank you!