tunaqui / picresize
Library picture
v1.1.0
2018-03-07 20:48 UTC
Requires
- php: ~5.6|~7.0
- intervention/image: ^2.4
- tunaqui/utils: ^1.1
Requires (Dev)
- phpunit/phpunit: >=5.4.3
- squizlabs/php_codesniffer: ^2.3
This package is auto-updated.
Last update: 2025-03-20 12:46:16 UTC
README
PicResize a small library that allows you to download images from a URL, store them and resize them.
Installation
Via Composer
$ composer require tunaqui/picresize
Install vendor
$ composer install
Usage
Download an image from a URL and store it in a directory.
$image = new \Tunaqui\PicResize\Picture(); $image->download('http://nisleen.com/images/logo.png'); $image->save('../download/');
Download an image from a URL, store it in a directory and resize.
$image = new \Tunaqui\PicResize\PictureResize('http://nisleen.com/images/logo.png', '../download/'); $image->resize(150, 150); echo $image->response();
Create a thumbnail.
$img = new \Tunaqui\PicResize\PictureResize('../download/logo.png'); $img->thumbnail(100); $img->show();
Create a thumbnail and save.
$img = new \Tunaqui\PicResize\PictureResize('../download/logo.png'); $img->thumbnail(100); $img->saveNewSize();
Credits
License
The MIT License (MIT). Please see License File for more information.