PHP class for photo effects similar to Instagram
use Zaachi\Image\Filter; require 'vendor/autoload.php'; $image = imagecreatefromjpeg("/path/to/image.jpg"); $filter = (new Filter($image))->aqua(); header('Content-type: image/jpeg'); imagejpeg($filter->getImage());
Examples of usage are in the examples directory. To generate example images, this bash snippet may be helpful:
examples
for f in *.php; do php $f > ${f%.php}.png; done
info at phpclasses dot org