= 0) { $X = 0; while ($X < $BMP['width']) { switch ($BMP['bits_per_pixel']) { case 32: $COLOR = unpack("V", substr($IMG, $P, 3) . $VIDE); break; case 24: $COLOR = unpack("V", substr($IMG, $P, 3) . $VIDE); break; case 16: $COLOR = unpack("n", substr($IMG, $P, 2)); $COLOR[1] = $PALETTE[$COLOR[1] + 1]; break; case 8: $COLOR = unpack("n", $VIDE . substr($IMG, $P, 1)); $COLOR[1] = $PALETTE[$COLOR[1] + 1]; break; case 4: $COLOR = unpack("n", $VIDE . substr($IMG, floor($P), 1)); if (($P * 2) % 2 == 0) $COLOR[1] = ($COLOR[1] >> 4); else $COLOR[1] = ($COLOR[1] & 0x0F); $COLOR[1] = $PALETTE[$COLOR[1] + 1]; break; case 1: $COLOR = unpack("n", $VIDE . substr($IMG, floor($P), 1)); if (($P * 8) % 8 == 0) $COLOR[1] = $COLOR[1] >> 7; elseif (($P * 8) % 8 == 1) $COLOR[1] = ($COLOR[1] & 0x40) >> 6; elseif (($P * 8) % 8 == 2) $COLOR[1] = ($COLOR[1] & 0x20) >> 5; elseif (($P * 8) % 8 == 3) $COLOR[1] = ($COLOR[1] & 0x10) >> 4; elseif (($P * 8) % 8 == 4) $COLOR[1] = ($COLOR[1] & 0x8) >> 3; elseif (($P * 8) % 8 == 5) $COLOR[1] = ($COLOR[1] & 0x4) >> 2; elseif (($P * 8) % 8 == 6) $COLOR[1] = ($COLOR[1] & 0x2) >> 1; elseif (($P * 8) % 8 == 7) $COLOR[1] = ($COLOR[1] & 0x1); $COLOR[1] = $PALETTE[$COLOR[1] + 1]; break; default: return false; break; } imagesetpixel($res, $X, $Y, $COLOR[1]); $X++; $P += $BMP['bytes_per_pixel']; } $Y--; $P+=$BMP['decal']; } fclose($f1); return $res; } $pic = 'a.bmp'; $res = ImageCreateFromBMP($pic); /** * 温馨提示: * png、jpg格式图片可以设置压缩级别,具体范围如下: * png格式图片压缩范围为 0-9 * jpg格式图片压缩范围从 0-100,(默认值大约为75) * 数字越小压缩的就越厉害,则质量越差、体积越小。 * 如果超出压缩范围会报错,如下: * Warning: imagepng(): gd-png error: compression level must be 0 through 9 in E:\wwwroot\ttt.php on line 110 */ imagepng($res, 'b11.png', 9); //生成质量为9的图片 imagegif($res, 'b11.gif'); imagejpeg($res, 'b11.jpg', 90); //生成质量为90的图片