16 lines
267 B
PHP
16 lines
267 B
PHP
--TEST--
|
|
imagecreatefromwbmp
|
|
--EXTENSIONS--
|
|
gd
|
|
--FILE--
|
|
<?php
|
|
$file = __DIR__ . '/src.wbmp';
|
|
|
|
$im2 = imagecreatefromwbmp($file);
|
|
echo 'test create from wbmp: ';
|
|
echo imagecolorat($im2, 3,3) == 0x0 ? 'ok' : 'failed';
|
|
echo "\n";
|
|
?>
|
|
--EXPECT--
|
|
test create from wbmp: ok
|