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