/**
* @(#)bmp.php
* PHP version 5.2.3
*
*
* Copyright 2007 SoftRoad. All Rights Reserved.
*
*====================================================================
* 変更履歴
*
* 新規作成 2007 年5月17日 蒋彪
*/
function imagebmp($img, $file = "", $RLE = 0) {$ColorCount = imagecolorstotal($img);$Transparent = imagecolortransparent($img);
$IsTransparent = $Transparent != -1;if ($IsTransparent)
$ColorCount--;if ($ColorCount ==...