43 lines
1 KiB
PHP
43 lines
1 KiB
PHP
--TEST--
|
|
png compression test
|
|
--EXTENSIONS--
|
|
gd
|
|
--SKIPIF--
|
|
<?php
|
|
if (!function_exists("imagecreatefrompng") || !function_exists("imagepng")) {
|
|
die("skip png support unavailable");
|
|
}
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$cwd = __DIR__;
|
|
|
|
|
|
$im = imagecreatetruecolor(20,20);
|
|
imagefilledrectangle($im, 5,5, 10,10, 0xffffff);
|
|
try {
|
|
imagepng($im, $cwd . '/test_pngcomp.png', -2);
|
|
} catch (\ValueError $e) {
|
|
echo $e->getMessage() . PHP_EOL;
|
|
}
|
|
try {
|
|
imagepng($im, $cwd . '/test_pngcomp.png', 10);
|
|
} catch (\ValueError $e) {
|
|
echo $e->getMessage() . PHP_EOL;
|
|
}
|
|
echo "PNG compression test: ";
|
|
imagepng($im, $cwd . '/test_pngcomp.png', 9);
|
|
|
|
$im2 = imagecreatefrompng($cwd . '/test_pngcomp.png');
|
|
$col = imagecolorat($im2, 8,8);
|
|
if ($col == 0xffffff) {
|
|
echo "ok\n";
|
|
}
|
|
|
|
@unlink($cwd . "/test_pngcomp.png");
|
|
?>
|
|
--EXPECT--
|
|
imagepng(): Argument #3 ($quality) must be between -1 and 9
|
|
imagepng(): Argument #3 ($quality) must be between -1 and 9
|
|
PNG compression test: ok
|