1. Go to this page and download the library: Download maalls/anim-gif library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
maalls / anim-gif example snippets
// Use an array containing file paths, resource vars (initialized with imagecreatefromXXX),
// image URLs or binary image data.
$frames = array(
imagecreatefrompng("/../images/pic1.png"), // resource var
"/../images/pic2.png", // image file path
file_get_contents("/../images/pic3.jpg"), // image binary data
"http://thisisafakedomain.com/images/pic4.jpg", // URL
);
// Or: load images from a dir (sorted, skipping .files):
//$frames = "../images";
// Optionally: set different durations (in 1/100s units) for each frame
$durations = array(20, 30, 10, 10);
// Or: you can leave off repeated values from the end:
//$durations = array(20, 30, 10); // use 10 for the rest
// Or: use 'null' anywhere to re-apply the previous delay:
//$durations = array(250, null, null, 500);