使用 GD 库将 bmp 图像写入目录

Write bmp image into a directory using GD library

您可以使用php图像魔术师开源库。

PHP Image Magician 是一个开源项目,它使用 PHP GD 以简单、简洁的方式执行图像处理。 BMP支持 读写。

https://github.com/Oberto/php-image-magician

http://phpimagemagician.jarrodoberto.com/

GD 不支持保存为 BMP 图片。我的建议是先将处理后的BMP图像保存为PNG格式,然后单独使用ImageMagick将其保存回BMP:

<?php    
$image = new Imagick('path/to/saved/image-from-bmp.png');
$image->writeImage('path/to/new/bmp/image.bmp');