📅  最后修改于: 2023-12-03 15:33:33.064000             🧑  作者: Mango
imagebmp()函数是PHP图像处理函数库中的一个函数,它可将GD image对象转换为Windows BMP图像格式,并输出或保存。
bool imagebmp ( resource $image [, mixed $to = NULL [, bool $compressed = TRUE ]] )
成功时返回TRUE,失败时返回FALSE。
以下示例将一个PNG格式的图片转换成BMP格式,并输出到客户端浏览器:
// 创建GD image对象
$img = imagecreatefrompng("example.png");
// 将image对象转换成BMP格式,并输出到客户端
header("Content-Type: image/bmp");
imagebmp($img);
以下示例将一个PNG格式的图片转换成BMP格式,并保存到服务器:
// 创建GD image对象
$img = imagecreatefrompng("example.png");
// 将image对象转换成BMP格式,并保存到服务器
imagebmp($img, "example.bmp");