mirror of
https://github.com/php/php-src.git
synced 2024-11-24 02:15:04 +08:00
a375d54785
Cf. PR #6787. Closes GH-6994.
26 lines
543 B
PHP
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
|