stoffel/console-image

Helper to print images using Symfony Console

0.2.2 2020-11-30 18:13 UTC

This package is auto-updated.

Last update: 2024-04-29 04:28:14 UTC


README

Helper to print images using Symfony Console inspired by new features and viu.

Example

$ git clone git@github.com:chr-hertel/console-image.git
$ cd console-image
$ composer install
$ example/printer path/to/image.jpg

Installation

$ composer require stoffel/console-image

Usage in PHP

use Stoffel\Console\Image\ImageHelper;

ImageHelper::create($output)
    ->print('/path/to/image.jpg');

// or with explicit maximal dimensions (still scaled in correct aspect ration)
ImageHelper::create($output)
    ->print('/path/to/image.jpg', 40, 20);