如何创建.BMP文件的缩略图?

Mis*_*hko 6 php thumbnails bmp

我用imagecreatefromjpeg,imagecreatefromgifimagecreatefrompng函数来创建的缩略图image/jpeg,image/gif以及image/png哑剧.

我还想创建.BMP文件的缩略图.

我检查了一个文件,发现它的哑剧是image/x-ms-bmp.

但是,我找不到合适的imagecreatefrom...功能.

请建议.

Ala*_*nse 11

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;
}
Run Code Online (Sandbox Code Playgroud)

  • 不适用于x-ms-bmp,`注意:未初始化的字符串偏移量`使图像失真 (3认同)