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

Nightfly aaa4f5b923 hexToRgb method implemented 1 year ago
assets f77e2f9385 image data extraction demo 1 year ago
examples f77e2f9385 image data extraction demo 1 year ago
src aaa4f5b923 hexToRgb method implemented 1 year ago
.gitignore 3bbdaea485 few examples 1 year ago
LICENSE 892fbdbec3 Initial commit 1 year ago
README.md 293d1e5f6c yep 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 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