bigweb / img2text
There is no license information available for the latest version (dev-master) of this package.
dev-master
2015-11-11 10:02 UTC
Requires
- intervention/image: ~2.3
Requires (Dev)
- docopt/docopt: dev-master
- phpunit/phpunit: 4.*
This package is not auto-updated.
Last update: 2024-10-30 19:09:38 UTC
README
Image to Ascii Text, can output to html or ansi terminal.
See also gif2text
Example
img2text cat.jpg --color > with-color.html
demoimg2text cat.jpg > without-color.html
demoimg2text cat.jpg --ansi
It would be like this:
Installation
$ composer require bigweb/img2text
Usage
Usage:
img2text <imgfile> [--maxLen=<n>] [--fontSize=<n>] [--color] [--ansi] [--bgcolor=<#RRGGBB>]
img2text (-h | --help)
Options:
-h --help show this screen.
--ansi output an ANSI rendering of the image
--color output a colored HTML rendering of the image.
--fontSize=<n> sets font size (in pixels) when outputting HTML,
default: 7
--maxLen=<n> resize image so that larger of width or height matches
maxLen, default: 100px
--bgcolor=<#RRGGBB> if specified, is blended with transparent pixels to
produce the output. In ansi case, if no bgcolor set, a
fully transparent pixel is not drawn at all, partially
transparent pixels drawn as if opaque
You also can use it anywhere what you want at your application like this:
use Bigweb\Img2text\Img2text; $options = [ 'ansi' => , 'color' => 1, 'fontSize' => 7, 'maxLen' => 100, ]; $img = new Img2text('imageFilePath', $options); echo $img->render();
Thanks
- 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
License
BSD.