PixelCraft is a lightweight PHP library designed for easy image processing using the GD lib
|
1 year ago | |
---|---|---|
assets | 1 year ago | |
examples | 1 year ago | |
src | 1 year ago | |
.gitignore | 1 year ago | |
LICENSE | 1 year ago | |
README.md | 1 year ago | |
composer.json | 1 year ago |
PixelCraft is a lightweight PHP library designed for easy image processing using the GD lib. With PixelCraft, you can perform basic image operations such as resizing, cropping, drawing of watermarks, and format conversion. The library is characterized by its user-friendly interface and minimal code footprint, allowing for quick and efficient image processing in PHP projects.
$pc=new PixelCraft();
$pc->createImage(640, 480);
$pc->fill('yellow');
$pc->addColor('sky', 34, 61, 216);
$pc->drawRectangle(0, 0, 640, 240, 'sky');
$pc->renderImage('png');
$pc=new PixelCraft();
$pc->loadImage('someimage.png');
$pc->scale(0.5);
$pc->saveImage('resizedimage.jpg','jpeg');
Full PixelCraft class description
The recommended method of installing this library is via Composer
composer require pixelcraft/pixelcraft
MIT