php-src/ext/gd/tests/xpm2png.phpt
Christoph M. Becker a375d54785
Migrate skip checks to --EXTENSIONS-- for ext/gd
Cf. PR #6787.

Closes GH-6994.
2021-05-22 15:38:51 +02:00

26 lines
543 B
PHP

--TEST--
xpm --> png conversion test
--EXTENSIONS--
gd
--SKIPIF--
<?php
if (!function_exists("imagepng")) {
die("skip png support unavailable");
}
if (!function_exists("imagecreatefromxpm")) {
die("skip xpm read support unavailable");
}
?>
--FILE--
<?php
$cwd = __DIR__;
echo "XPM to PNG conversion: ";
echo imagepng(imagecreatefromxpm($cwd . "/conv_test.xpm"), $cwd . "/test_xpm.png") ? 'ok' : 'failed';
echo "\n";
@unlink($cwd . "/test_xpm.png");
?>
--EXPECT--
XPM to PNG conversion: ok