?php
//背景圖和原圖需要保持寬高要保持一樣,這里的示例原圖用的是藍(lán)色背景
init();
function init(){
$old = '1.png';
$new = '2.png';
//創(chuàng)建一個(gè)png透明圖
$img = imagecreatefrompng($old);
setpng($img,$old,$new);
}
function setpng($imgid,$filename,$savename){
$bg = 'bg.png';//背景圖
$new = imagecreatefrompng($bg);//創(chuàng)建一個(gè)png透明圖
list($width,$height)=getimagesize($filename);//獲取長和寬
$white = imagecolorallocate($imgid,1,155,215);//選擇一個(gè)替換顏色。這里是綠色
cleancolor($imgid,$white);
imagecolortransparent($imgid,$white);//把選擇的顏色替換成透明
imagecopymerge($new,$imgid,0,0,0,0,$width,$height,100);//合并圖片
imagepng($new,$savename);//保存圖片
imagedestroy($imgid);//銷毀
imagedestroy($new);
echo 'img src="'.$savename.'">';
}
function cleancolor($imgid,$color){
$width = imagesx($imgid);//獲取寬
$height = imagesy($imgid);//獲取高
for($i=0;$i$width;$i++){
for($k=0;$k$height;$k++){
//對(duì)比每一個(gè)像素
$rgb = imagecolorat($imgid,$i,$k);
$r = ($rgb >> 16)0xff;//取R
$g = ($rgb >> 8)0xff;//取G
$b = $rgb0xff;//取B
$randr = 1.5;
$randg = 1;
$randb=1;
//藍(lán)色RGB大致的位置。替換成綠色
if($r=65*$randr $g=225*$randg $b=255*$randb $b*$randb>=100){
//如果能夠精確的計(jì)算出要保留位置的,這里可以寫絕對(duì)的數(shù)字
if($i>=$width/2 $i=$width/2 $k>=$height/2 $k=$height/2){
}else{
//改變顏色
imagesetpixel($imgid,$i,$k,$color);
}
}
}
}
}
更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《PHP圖形與圖片操作技巧匯總》、《PHP數(shù)組(Array)操作技巧大全》、《PHP數(shù)據(jù)結(jié)構(gòu)與算法教程》、《php程序設(shè)計(jì)算法總結(jié)》、《PHP數(shù)學(xué)運(yùn)算技巧總結(jié)》、《php字符串(string)用法總結(jié)》及《php常見數(shù)據(jù)庫操作技巧匯總》