Download the PHP package ajenbo/image.php without Composer
On this page you can find all versions of the php package ajenbo/image.php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download ajenbo/image.php
More information about ajenbo/image.php
Files in ajenbo/image.php
Download ajenbo/image.php
More information about ajenbo/image.php
Files in ajenbo/image.php
Vendor ajenbo
Package image.php
Short Description Helper function for simple image manipulation using GD functions.
License LGPL-3.0
Package image.php
Short Description Helper function for simple image manipulation using GD functions.
License LGPL-3.0
Please rate this library. Is it a good library?
Informations about the package image.php
Image.php
Helper function for simple image manipulation using GD functions.
Samples
Open an image, remove any boarder, resize to 64x64 and save it.
$path = 'test.png';
$image = new Image($path);
$imageContent = $image->findContent();
$image->crop(
$imageContent['x'],
$imageContent['y'],
$imageContent['width'],
$imageContent['height']
);
$image->resize(64, 64);
$image->save($path, 'png');
All versions of image.php with dependencies
PHP Build Version
Package Version
Requires
php Version
>=7.1
ext-gd Version *
ext-gd Version *
The package ajenbo/image.php contains the following files
Loading the files please wait ....