PHP Classes

File: img2img/PHP-Instagram-effects-master/examples/colorise.php

Recommend this page to a friend!
  Classes of Rafael Martin Soto   PHP Graph   img2img/PHP-Instagram-effects-master/examples/colorise.php   Download  
File: img2img/PHP-Instagram-effects-master/examples/colorise.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Graph
Generate charts to display as images in Web pages
Author: By
Last change:
Date: 2 years ago
Size: 262 bytes
 

Contents

Class file image Download
<?php
use Zaachi\Image\Filter;
require
'../vendor/autoload.php';

$image = imagecreatefromjpeg(isset($argv[1]) ? $argv[1] : "example.jpg");

$effects = (new Filter($image))->colorise();

header("Content-type: image/png");
imagepng($image);
imagedestroy($image);