PixelCraft is a lightweight PHP library designed for easy image processing using the GD lib

Nightfly 9d6243f894 base64 images loading/export implemented 1 year ago
assets f77e2f9385 image data extraction demo 1 year ago
examples 9d6243f894 base64 images loading/export implemented 1 year ago
src 9d6243f894 base64 images loading/export implemented 1 year ago
.gitignore 3bbdaea485 few examples 1 year ago
LICENSE 892fbdbec3 Initial commit 1 year ago
README.md 9d6243f894 base64 images loading/export implemented 1 year ago
composer.json 3bbdaea485 few examples 1 year ago

README.md

pcraftlogo

PixelCraft

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.

Requirements

  • PHP >=5.3 (PHP 7.4, 8.2, 8.3 also compatible)
  • GD Library
  • Mbstring extension

Few usage examples

Minimal example


$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');

Image downscale and convert

$pc=new PixelCraft();

$pc->loadImage('someimage.png');
$pc->scale(0.5);

$pc->saveImage('resizedimage.jpg','jpeg');

Full PixelCraft class description

Installation with composer

The recommended method of installing this library is via Composer

Terminal

composer require pixelcraft/pixelcraft

License

MIT