deployhuman / phpimagehandler
Simple handling of images in php, gd or imagick
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/deployhuman/phpimagehandler
Requires
- php: ^8.0
Suggests
- ext-gd: *
- ext-imagick: *
This package is auto-updated.
Last update: 2025-12-10 04:45:37 UTC
README
Quick repo for easy handling of image
Will work both with GD and Imagick Extensions.
Removes all Exif data.
Composer
To install using Composer
composer require deployhuman/PHPImageHandler dev-main
Getting Started
<?php require_once(__DIR__ . '/vendor/autoload.php'); $image = new Image('c:\filepath\image.jpg'); $image->adaptiveResize(100,200,true); $image-saveToFile('c:\filepath\newimage.png'); ?>