11 lines
177 B
PHP
Executable File
11 lines
177 B
PHP
Executable File
<?php
|
|
|
|
require_once '../autoload.php';
|
|
|
|
use Gregwar\Image\Image;
|
|
|
|
// Note: create a "cache" directory before try this
|
|
echo Image::open('img/test.png')
|
|
->sepia();
|
|
echo "\n";
|