xref: /php-src/ext/gd/tests/createfromwbmp.phpt (revision a375d547)
1--TEST--
2imagecreatefromwbmp
3--EXTENSIONS--
4gd
5--FILE--
6<?php
7$file = __DIR__ . '/src.wbmp';
8
9$im2 = imagecreatefromwbmp($file);
10echo 'test create from wbmp: ';
11echo imagecolorat($im2, 3,3) == 0x0 ? 'ok' : 'failed';
12echo "\n";
13?>
14--EXPECT--
15test create from wbmp: ok
16