Can I detect animated gifs using php and gd?

后端 未结 6 1306
旧巷少年郎
旧巷少年郎 2020-12-02 12:54

I\'m currently running into some issues resizing images using GD.

Everything works fine until i want to resize an animated gif, which delivers the first frame on a b

6条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-02 13:58

    Reading whole file with file_get_contents may take too much memory if the given file is too large. I've re-factored the function previously given which reads just enough bytes to check frames and returns as soon as it finds at least 2 frames.

     1;
    }
    

提交回复
热议问题