mirror of
https://github.com/mosbth/cimage.git
synced 2025-01-17 19:18:15 +01:00
14 lines
301 B
Plaintext
14 lines
301 B
Plaintext
<?php
|
|
$script = <<<EOD
|
|
CImage.compare({
|
|
"input1": "../img.php?src=car.png",
|
|
"input2": "../img.php?src=car.png&sharpen",
|
|
"input3": "../img.php?src=car.png&blur",
|
|
"input4": "../img.php?src=car.png&emboss",
|
|
"json": true,
|
|
"stack": false
|
|
});
|
|
EOD;
|
|
|
|
include __DIR__ . "/compare.php";
|