zaachi/php-instagram-effects

PHP class for photo effects like Instagram

Installs: 11 527

Dependents: 0

Suggesters: 0

Security: 0

Stars: 54

Watchers: 7

Forks: 15

Open Issues: 1

pkg:composer/zaachi/php-instagram-effects

dev-master 2016-02-08 14:40 UTC

This package is not auto-updated.

Last update: 2025-10-29 13:05:38 UTC


README

PHP class for photo effects similar to Instagram

Usage

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:

for f in *.php; do php $f > ${f%.php}.png; done