如何创建 .BMP 文件的缩略图?
Posted
技术标签:
【中文标题】如何创建 .BMP 文件的缩略图?【英文标题】:How to create a thumbnail of .BMP file? 【发布时间】:2010-10-29 03:53:10 【问题描述】:我使用imagecreatefromjpeg
、imagecreatefromgif
和imagecreatefrompng
函数来创建image/jpeg
、image/gif
和image/png
的缩略图。
我还想创建.BMP
文件的缩略图。
我检查了一个文件,发现它的 mime 是image/x-ms-bmp
。
但是,我找不到合适的 imagecreatefrom...
函数。
请提出建议。
【问题讨论】:
是的,看看这个 php 手册页 - 提供了很多解决方案:us.php.net/manual/en/function.imagecreatefromwbmp.php 【参考方案1】:PHP 没有内置的 BMP 图像函数。
已经尝试过创建函数来执行此操作。
您可以在 PHP 文档中的此评论中找到一个健壮且文档齐全的版本:http://www.php.net/manual/en/function.imagecreatefromwbmp.php#86214
以下是该评论中的函数,没有优秀的文档,它变得更长但更具可读性:
public function imagecreatefrombmp($p_sFile)
$file = fopen($p_sFile,"rb");
$read = fread($file,10);
while(!feof($file)&&($read<>""))
$read .= fread($file,1024);
$temp = unpack("H*",$read);
$hex = $temp[1];
$header = substr($hex,0,108);
if (substr($header,0,4)=="424d")
$header_parts = str_split($header,2);
$width = hexdec($header_parts[19].$header_parts[18]);
$height = hexdec($header_parts[23].$header_parts[22]);
unset($header_parts);
$x = 0;
$y = 1;
$image = imagecreatetruecolor($width,$height);
$body = substr($hex,108);
$body_size = (strlen($body)/2);
$header_size = ($width*$height);
$usePadding = ($body_size>($header_size*3)+4);
for ($i=0;$i<$body_size;$i+=3)
if ($x>=$width)
if ($usePadding)
$i += $width%4;
$x = 0;
$y++;
if ($y>$height)
break;
$i_pos = $i*2;
$r = hexdec($body[$i_pos+4].$body[$i_pos+5]);
$g = hexdec($body[$i_pos+2].$body[$i_pos+3]);
$b = hexdec($body[$i_pos].$body[$i_pos+1]);
$color = imagecolorallocate($image,$r,$g,$b);
imagesetpixel($image,$x,$height-$y,$color);
$x++;
unset($body);
return $image;
【讨论】:
不适用于 x-ms-bmp,Notice: Uninitialized string offset
制作失真图像【参考方案2】:
这个家伙描述的东西怎么样:
http://www.php.net/manual/en/function.imagecreate.php#53879
【讨论】:
【参考方案3】:有一个开源项目,PHP Image Magician,允许您读取和写入 BMP 文件。见这里:https://***.com/a/11531747/577306
【讨论】:
以上是关于如何创建 .BMP 文件的缩略图?的主要内容,如果未能解决你的问题,请参考以下文章