Files
liche/common/vendor/gregwar/image/Gregwar/Image/demo/fallback.php
T
2022-08-29 08:47:22 +08:00

12 lines
165 B
PHP
Executable File

<?php
require_once '../autoload.php';
use Gregwar\Image\Image;
echo Image::open('img/something-wrong.png')
->resize(100, 0)
->negate()
->jpeg()
;