AnimGif icon indicating copy to clipboard operation
AnimGif copied to clipboard

502 Bad Gateway

Open MicaelaDJ opened this issue 4 years ago • 0 comments

I tried doing this...

$frames = array("img1.jpg", "img2.jpg");
$durations = array(300);
$anim = new GifCreator\AnimGif();

$anim->create($frames);

$gif = $anim->get();
header("Content-type: image/gif");
echo $gif;
exit;

but when i try to send it to the browser I am getting a bad gateway error. my current php version is 7.3.26

MicaelaDJ avatar Jan 21 '21 16:01 MicaelaDJ