// bool png2wbmp(string $pngname, string $wbmpname, int $dest_height,
// int $dest_width, int $threshold)
// Threshold value between 0 and 8
$path = 'd:\test-font.png';
$image_png_size = getimagesize($path);
png2wbmp($path, 'd:\test.wbmp', $image_png_size[1], $image_png_size[0], 7);
/*
run:
Check the folder for the new .wbmp image
*/