PHP code example of stas-bool / gifer

1. Go to this page and download the library: Download stas-bool/gifer 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/ */

    

stas-bool / gifer example snippets




 = 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.';

$gif = Gifer\Gifer::createGif(
	__DIR__.'/NotoSans-Regular.ttf', //font file
	$text, //text
	'#000000', //background color in hex format
	'#FFFFFF', //font color in hex format
	5 //speed 1(slowest) - 10(fastest),
);
file_put_contents('/tmp/test.gif', $gif);