GD庫裡沒有產生bmp圖片的函數,所以自己寫了一個,這個函數尚有一個壓縮演算法沒有寫,不過已經夠用了。需要的同學可以看看。
int imagebmp ( resource image [, string filename [, int $bit [, int compression]]] )
$im: 映像資源
$filename: 若要另存為文件,請指定文件名,為空則直接在瀏覽器輸出
$bit: 影像品質(1、4、8、16、24、32位元)
$compression: 壓縮方式,0為不壓縮,1使用RLE8壓縮演算法進行壓縮
注意:這個函數仍然需要GD函式庫的支援。
Demo:
$im = imagecreatefrompng("test.png");
imagebmp($im);
imagedestroy($im);
Source:
/**
* 建立bmp格式圖片
*
* @author: legend( [email protected] )
* @link: http://www.ugia.cn/?p=96
* @description: create Bitmap-File with GD library
* @version: 0.1
*
* @param resource $im 圖像資源
* @param string $filename 如果要另存為文件,請指定文件名,為空則直接在瀏覽器輸出
* @param integer $bit 影像品質(1、4、8、16、24、32位元)
* @param integer $compression 壓縮方式,0為不壓縮,1使用RLE8壓縮演算法進行壓縮
*
* @return integer
*/
function imagebmp(&$im, $filename = '', $bit = 8, $compression = 0)
{
if (!in_array($bit, array(1, 4, 8, 16, 24, 32)))
{
$bit = 8;
}
else if ($bit == 32) // todo:32 bit
{
$bit = 24;
}
$bits = pow(2, $bit);
// 調整調色盤
imagetruecolortopalette($im, true, $bits);
$width = imagesx($im);
$height = imagesy($im);
$colors_num = imagecolorstotal($im);
if ($bit <= 8)
{
// 色彩索引
$rgb_quad = '';
for ($i = 0; $i < $colors_num; $i ++)
{
$colors = imagecolorsforindex($im, $i);
$rgb_quad .= chr($colors['blue']) . chr($colors['green']) . chr($colors['red']) . "