Gif image to Ascii Text..
See also img2text
gif2text test.gif > out.html
demo
$ composer require bigweb/gif2text
Usage:
gif2text <imgfile>
gif2text (-h | --help)
You also can use it anywhere what you want at your application like this:
use Bigweb\Gif2text\Gif2text;
$options = [
'maxLen' => 100,
];
$template = __DIR__ . '/template.html';
$img = new Gif2text($gifPath, $template, $options);
echo $img->render();
- Use https://github.com/docopt/docopt.php to create beautiful command-line interface
- Use https://github.com/Intervention/image to process image
- Thanks @hit9, This project stolen from https://github.com/hit9/img2txt
BSD.