atiksoftware / php-class-imgmodel
There is no license information available for the latest version (1.0) of this package.
PHP Image editor. Create-resize-draw vs.
1.0
2018-09-15 01:06 UTC
This package is auto-updated.
Last update: 2024-11-15 14:38:04 UTC
README
PHP Image editor. Create-resize-draw vs.
Installation
Using Composer
composer require atiksoftware/php-class-imgmodel
require __DIR__.'/../vendor/autoload.php'; use \Atiksoftware\IMGModel\IMGModel; $img = new IMGModel();
compress image
$img->load("input.png"); $img->maxarea(1280,720); $img->save("output.png",false,70);