tomk / imagehelper
Class to help with image manipulation
Installs: 20
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/tomk/imagehelper
Requires
- php: >=5.4
Requires (Dev)
- phpunit/phpunit: ~4.0
This package is auto-updated.
Last update: 2025-09-19 12:39:02 UTC
README
Help with loading and resizing images (including ICO icons) from strings and returning image resources for use with the gd library.
Supports alpha transparency and upscaling
Other useful methods to follow.
Usage
$data = file_get_contents('image.file');
$imageHelper = new ImageHelper($data);
$resized = $imageHelper->resize(256, 256, true);
imagepng($resized);