ホームページ  >  記事  >  バックエンド開発  >  PHP は bmp 形式の画像を jpg 形式に変換します。 プログラム_PHP チュートリアル

PHP は bmp 形式の画像を jpg 形式に変換します。 プログラム_PHP チュートリアル

WBOY
WBOYオリジナル
2016-07-20 11:07:56996ブラウズ

php教程将bmp格式图片转换成jpg格式程序

function imagebmp($img,$file="",$rle=0)
{


$colorcount=imagecolorstotal($img);

$transparent =imagecolortransparent($img);
$istransparent=$transparent!=-1;


if($istransparent) $colorcount--;

if($colorcount==0) {$colorcount=0; $bitcount=24;};
if(($colorcount>0)and($colorcountif(($colorcount>2)and($colorcountif(($colorcount>16)and($colorcount


$ width = imagesx($ img);
$ height = imagesy($ img); )%4;

if($bitcount

$size=(floor($width/(8/$bitcount))+$zbytek)*$ height+54;

$size+=$palsize;

$offset=54+$palsize;

// ビットマップファイルヘッダ

$ret = 'bm';                        // ヘッダー (2b)

$ret .= int_to_dword($size);        // ファイルのサイズ (4b)
$ret .= int_to_dword(0);        // 予約済み (4b)
$ret .= int_to_dword($offset);        // 画像の最初のバイトであるファイル内のバイト位置 (4b)
// ビットマップ情報ヘッダー
$ret .= int_to_dword(40);        // bitmapinfoheader のサイズ (4b)
$ret .= int_to_dword($width);        // ビットマップの幅 (4b)
$ret .= int_to_dword($height);        // ビットマップの高さ (4b)
$ret .= int_to_word(1);        // 複葉機 = 1 (2b)
$ret .= int_to_word($bitcount);        // bibitcount = {1 (mono) または 4 (16 clr ) または 8 (256 clr) または 24 (16 mil)} (2b)
$ret .= int_to_dword($rle);        // rle 圧縮 (4b)
$ret .= int_to_dword(0);        // 幅 x 高さ (4b)
$ret .= int_to_dword(0);        // bixpelspermeter (4b)
$ret .= int_to_dword(0);        // biypelspermeter (4b)
$ret .= int_to_dword(0);        // 使用されるパレットの数 (4b)
$ret .= int_to_dword(0);        // 重要な色の番号(4b)
// 画像データ

$cc=$colorcount;
$sl1=strlen($ret);
if($cc==0) $cc=256;
if($bitcount {
$colortotal=imagecolorstotal($img) ;
if($istransparent) $colortotal--;

for($p=0;$p<$colortotal;$p++)
{
$color=imagecolorsforindex($img,$p);
$ret.= inttobyte($color["blue"]);
$ret.=inttobyte($color["green"]);
$ret.=inttobyte($color["red"]);
$ret.=inttobyte( 0); //予約
};

$ct=$colortotal;
for($p=$colortotal;$p<$cc;$p++)
{
$ret.=inttobyte(0);
$ret.=inttobyte (0);
$ret.=inttobyte(0);
$ret.=inttobyte(0); //予約
};
};


if($bitcount<=8)
{

for($y=$height-1;$y>=0;$y--)
{
$bwrite ="";
for($x=0;$x<$width;$x++)
{
$color=imagecolorat($img,$x,$y);
$bwrite.=decbinx($color,$ bitcount);
if(strlen($bwrite)==8)
{
$retd.=inttobyte(bindec($bwrite));
$bwrite="";
};
};

if((strlen ($bwrite)<8)and(strlen($bwrite)!=0))
{
$sl=strlen($bwrite);
for($t=0;$t<8-$sl;$t++ )
$sl.="0";
$retd.=inttobyte(bindec($bwrite));
};
for($z=0;$z<$zbytek;$z++)
$retd.=inttobyte (0);
};
};

if(($rle==1)and($bitcount==8))
{
for($t=0;$t {
if($t!=0)
if(($t)%$width==0)
$ret.=chr(0).chr(0);

if(($t+5)%$width==0)
{
$ret.=chr(0).chr(5).substr($retd,$t,5).chr(0);
$t+=1;
}
if(($t+6)%$width==0)
{
$ret.=chr(0).chr(6).substr($retd,$t,6) ;
$t+=2;
}
else
{
$ret.=chr(0).chr(4).substr($retd,$t,4);
};
};
$ret.= chr(0).chr(1);
}
else
{
$ret.=$retd;
};


if($bitcount==24)
{
for($z=0;$z< ;$zbytek;$z++)
$dopl.=chr(0);

for($y=$height-1;$y>=0;$y--)
{
{
for($x=0; $x<$width;$x++)
{
$color=imagecolorsforindex($img,imagecolorat($img,$x,$y));
$ret.=chr($color["blue"]).chr ($color["green"]).chr($color["red"]);
}
$ret.=$dopl;

};

};


if($file!="")
{
$r=($f=fopen($file,"w"));
$r=$r と fwrite($f,$ret);
$r=$r と fclose($f);
return $r;
}
else
{
echo $ret;
};

};



/*
*---------------------- --------------------------------------
* imagecreatefrombmp
*------ -------------------------------------------------- ---
* - bmp ファイルから画像を読み取ります
*
* パラメータ: $file - ロードするターゲットファイル
*
* 戻り値: 画像 ID

*/


function imagecreatefrombmp($file)
{

global $currentbit , $echomode;


$f=fopen($file,"r");

$header=fread($f,2);


if($header=="bm")
{
$size=freaddword ($f);
$reserved1=freadword($f);
$reserved2=freadword($f);

$firstbyteofimage=freaddword($f);


$sizebitmapinfoheader=freaddword($f);
$width= freaddword($f);
$height=freaddword($f);
$biplanes=freadword($f);
$bibitcount=freadword($f);
$rlecompression=freaddword($f);
$widthxheight= freaddword($f);
$bixpelspermeter=freaddword($f);
$biypelspermeter=freaddword($f);
$numberofpalettesused=freaddword($f);

$numberof importantcolors=freaddword($f);


if( $bibitcount<24)
{
$img=imagecreate($width,$height);
$colors=pow(2,$bibitcount);
for($p=0;$p<$colors;$p++)
{
$b=freadbyte($f);
$g=freadbyte($f);
$r=freadbyte($f);
$reserved=freadbyte($f);
$palette[]=imagecolorallocate($ img,$r,$g,$b);

};



if($rlecompression==0)
{

$zbytek=(4-ceil(($width/(8/$bibitcount)) )%4)%4;🎜

for($y=$height-1;$y>=0;$y--)
{
$currentbit=0;
for($x=0;$x {
$c=freadbits($f,$bibitcount);
imagesetpixel($img,$x,$y,$palette[$c]);
};
if($currentbit!=0) {freadbyte($f) ;};
for($g=0;$g freadbyte($f);
};

};
};


if($rlecompression==1) // $bi_rle8
{
$y=$height;

$pocetb=0;

while(true)
{
$y--;
$prefix=freadbyte($f);
$suffix=freadbyte($f );
$pocetb+=2;

$echoit=false;

if($echoit)echo "プレフィックス: $prefix サフィックス: $suffix
";
if(($prefix==0)and($ suffix==1)) ブレーク;
if(feof($f)) ブレーク;

while(!(($prefix==0)and($suffix==0)))
{
if($prefix= =0)
{
$pocet=$suffix;
$data.=fread($f,$pocet);
$pocetb+=$pocet;
if($pocetb%2==1) {freadbyte($f) ; $pocetb++;};
};
if($prefix>0)
{
$pocet=$prefix;
for($r=0;$r $data.=chr($ suffix);
};
$prefix=freadbyte($f);
$suffix=freadbyte($f);
$pocetb+=2;
if($echoit) echo "プレフィックス: $prefix サフィックス: $suffix};

for($x=0;$x {
imagesetpixel($img,$x,$y,$palette[ord($data[$ x])]);
};
$data="";

};

};


if($rlecompression==2) //$bi_rle4
{
$y=$height;
$ pocetb=0;

/*while(!feof($f))
echo freadbyte($f)."_".freadbyte($f)."
";*/
while(true)
{
//break;
$y--;
$prefix=freadbyte($f);
$suffix=freadbyte($f);
$pocetb+=2;

$echoit=false;

if($ echoit)echo "プレフィックス: $prefix サフィックス: $suffix
";
if(($prefix==0)and($suffix==1)) ブレーク;
if(feof($f)) ブレーク;

while(!(($prefix==0)and($suffix==0)))
{
if($prefix==0)
{
$pocet=$suffix;

$currentbit=0;
for($h=0;$h $data.=chr(freadbits($f,4));
if($currentbit!=0) freadbits($f,4);
$pocetb+=ceil(($pocet/2));
if($pocetb%2==1) {freadbyte($f); $pocetb++;};
};
if($prefix>0)
{
$pocet=$prefix;
$i=0;
for($r=0;$r<$pocet;$r++)
{
if($i%2==0)
{
$data.=chr($suffix%16);
}
else
{
$data.=chr(floor($suffix/16));
} ;
$i++;
};
};
$prefix=freadbyte($f);
$suffix=freadbyte($f);
$pocetb+=2;
if($echoit) echo "プレフィックス: $prefix suffix : $suffix
";
};

for($x=0;$x {
imagesetpixel($img,$x,$y,$palette[ord ($data[$x])]);
};
$data="";

};

};


if($bibitcount==24)
{
$img=imagecreatetruecolor($width ,$height);
$zbytek=$width%4;

for($y=$height-1;$y>=0;$y--)
{
for($x=0;$x< $width;$x++)
{
$b=freadbyte($f);
$g=freadbyte($f);
$r=freadbyte($f);
$color=imagecolorexact($img,$r, $g,$b);
if($color==-1) $color=imagecolorallocate($img,$r,$g,$b);
imagesetpixel($img,$x,$y,$color) ;
}
for($z=0;$z<$zbytek;$z++)
freadbyte($f);
};
};
return $img;

};


fclose($f) ;


};

/*
* 補助関数:
*-------------------------------------
*
* freadbyte($file) - $ から 1 バイトを読み取りますfile
* freadword($file) - $file から 2 バイト (1 ワード) を読み取ります
* freaddword($file) - $file から 4 バイト (1 dword) を読み取ります
* freadlngint($file) - freaddword($ と同じ) file)
* decbin8($d) - 8 に埋められた d ゼロのバイナリ文字列を返します
* retbits($byte,$start,$len) - $byte
* freadbits からビット $start->$start+$len を返します($file,$count) - $file から次の $count ビットを読み取ります
* rgbtohex($r,$g,$b) - $r, $g, $b を hex に変換します
* int_to_dword($n) - 返します$n
* int_to_word($n) の 4 バイト表現 - $n
*/

関数 freadbyte($f)
{
return ord(fread($f,1));
}; の 2 バイト表現を返します。

関数 freadword($f)
{
$b1=freadbyte($f);
$b2=freadbyte($f);
return $b2*256+$b1;
};


function freadlngint($ f)
{
return freaddword($f);
};

function freaddword($f)
{
$b1=freadword($f);
$b2=freadword($f);
return $b2* 65536+$b1;
};

関数 retbits($byte,$start,$len)
{
$bin=decbin8($byte);
$r=bindec(substr($bin,$start, $len));
return $r;

};

$currentbit=0;
function freadbits($f,$count)
{
global $currentbit,$smode;
$byte=freadbyte($ f);
$lastcbit=$currentbit;
$currentbit+=$count;
if($currentbit==8)
{
$currentbit=0;
}
else
{
fseek($f,ftell($f )-1);
};
return retbits($byte,$lastcbit,$count);
};

function rgbtohex($red,$green,$blue)
{
$hred=dechex($ red);if(strlen($hred)==1) $hred="0$hred";
$hgreen=dechex($green);if(strlen($hgreen)==1) $hgreen="0$ hgreen";
$hblue=dechex($blue);if(strlen($hblue)==1) $hblue="0$hblue";
return($hred.$hgreen.$hblue);
};

function int_to_dword($n)
{
return chr($n & 255).chr(($n >> 8) & 255).chr(($n >> 16) & 255).chr(($n >> 24) & 255);
}
function int_to_word($n)
{
chr を返す($n & 255).chr(($n >> 8) & 255);
}


function decbin8($d)
{
return decbinx($d,8);
};

関数 decbinx($d,$n)
{
$bin=decbin($d);
$sbin=strlen($bin);
for($j=0;$j $bin="0$bin";
return $bin;
};

function inttobyte($n)
{
return chr($n);
};

//实例メソッド

include_once ('bmp.php');
$image=imagecreatefrombmp('a.bmp');
imagejpeg($image,'a.jpeg');
imagedestroy($image);


www.bkjia.comtru​​ehttp://www.bkjia.com/PHPjc/444910.html技術記事 php教程将bmp格式图片转换成jpg格式程序 function imagebmp($img,$file=,$rle=0) { $colorcount=imagecolorstotal($img); $transparent=イメージカラー透明($img); $istranspa...
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。