1. 画像リソースを作成します
imagecreatetruecolor(width,height);
imagecreatefromgif(画像名);
imagecreatefrompng(画像名);
imagecreatefromjpeg(画像名) さまざまな画像を描画します imagegif(画像リソース、保存パス);
imagepng()
imagejpeg( );
2. 画像属性を取得します
imagesx(res//width
imagesy(res//height
getimagesize(file path)
4 つのセルを含む配列を返します。インデックス 0 には画像の幅のピクセル値が含まれ、インデックス 1 には画像の高さのピクセル値が含まれます。インデックス 2 画像タイプのタグです: 1 = GIF、2 = JPG、3 = PNG、4 = SWF、5 = PSD、6 = BMP、7 = TIFF (インテル バイト オーダー)、8 = TIFF (モトローラ バイト オーダー) )、9 = JPC、10 = JP2、11 = JPX、12 = JB2、13 = SWC、14 = IFF、15 = WBMP、16 = XBM これらのタグは、PHP 4.3.0 の新しい IMAGETYPE 定数に対応します。はテキスト文字列で、内容は「height="yyy" width="xxx"」で、IMG タグに直接使用できます
画像リソースの破棄
imagedestroy(image resource);
3. 透明処理
PNGとjpegの透明色は正常ですが、gifだけが異常です
imagecolortransparent(resource image [,int color])//色を透明に設定します
imagecolorstotal()
imagecolorforindex();
4. 写真のトリミング
imagecopyresize()
imagecopyresampled();
5. 透かし(テキスト、画像)を追加します
文字列エンコード変換文字列 iconv ( string $in_charset , string $out_charset , string $str )
6. 画像の回転
imagerotate();//指定した角度で画像を反転します
7. 写真の反転
X 軸に沿って反転
Y 軸に沿って反転8. 研ぐ
index() のイメージカラー
イメージカラーat()
写真にグラフィックを描画 $img=imagecreatefromgif("./images/map.gif");
写真の通常のスケーリング
$new=imagecreatetruecolor($n_w, $n_h);
$img=imagecreatefromjpeg($filename);
//画像の一部をコピーして調整します
imagecopyresize($new, $img,0, 0,0, 0,$n_w, $n_h, $width, $height);
//画像出力新しい画像、名前を付けて保存
imagejpeg($new, "./images/hee2.jpg");
imagedestroy($new);
imagedestroy($img);
if ($width && ($s_w < $s_h)) {
$width = ($height / $s_h) * $s_w;
} else {
$height = ($width / $s_w) * $s_h;
}
$new=imagecreatetruecolor($width, $height);
$img=imagecreatefromjpeg($background);
imagecopyresampled($new, $img, 0, 0, 0, 0, $width, $height, $s_w, $s_h);
imagejpeg($new, $newfile);
imagedestroy($new);
imagedestroy($img);
}
thumn("images/hee.jpg", 200, 200, "./images/hee3.jpg");
if ($width && ($s_w < $s_h)) {
$width = ($height / $s_h) * $s_w;
} else {
$height = ($width / $s_w) * $s_h;
}
$new=imagecreatetruecolor($width, $height);
$img=imagecreatefromgif($background);
$otsc=imagecolortransparent($img);
if($otsc >=0 && $otst < imagecolorstotal($img)){// インデックス色判断
$tran=imagecolorsforindex($img, $otsc);/ /インデックス颜色值
$newt=imagecolorallocate($new, $tran["red"], $tran["green"], $tran["blue"]);
imagefill($new, 0, 0, $newt);
imagecolortransparent($new, $newt);
}
imagecopyresize($new, $img, 0, 0, 0, 0, $width, $height, $s_w, $s_h);
imagegif($new, $newfile);
imagedestroy($new);
imagedestroy($img);
}
thumn("images/map.gif", 200, 200, "./images/map3.gif");
$back=imagecreatefromjpeg($background);
$new=imagecreatetruecolor($cut_width, $cut_height);
imagecopyresampled($new, $back, 0, 0, $cut_x, $cut_y, $cut_width, $cut_height,$cut_width,$cut_height);
imagejpeg($new, $location);
imagedestroy($new);
imagedestroy($back);
}
cut("./images/hee.jpg", 440, 140, 117, 112, "./images/hee5.jpg");
文字水印
$color=imagecolorallocate($back, 0, 255, 0);
imagettftext($back, 20, 0, $x, $y, $color, "simkai.ttf", $text);
imagejpeg($back, "./images/hee7.jpg");
imagedestroy($back);
}
mark_text("./images/hee.jpg", "细说PHP", 150, 250);
//图片水印
function mark_pic($background, $waterpic, $x, $y){
$back=imagecreatefromjpeg($background);
$water=imagecreatefromgif($waterpic);
$w_w=imagesx($water );
$w_h=imagesy($water);
imagecopy($back, $water, $x, $y, 0, 0, $w_w, $w_h);
imagejpeg($back,"./images/hee8 .jpg");
imagedestroy($back);
imagedestroy($water);
}
mark_pic("./images/hee.jpg", "./images/gaolf.gif", 50, 200);
写真回転
$width=imagesx($back);
$height=imagesy($back);
$new=imagecreatetruecolor($width, $height);
for($x=0; $x imagecopy($new, $back, $width-$x-1, 0, $x, 0, 1, $height);
}
imagejpeg($new, $newfile);
imagedestroy($back);
imagedestroy($new);
}
関数turn_x($background, $newfile){
$back=imagecreatefromjpeg($background);
$width=imagesx($back);
$height=imagesy($back);
$new=imagecreatetruecolor($width, $height);
for($y=0; $y < $height; $y++){
imagecopy($new, $back,0, $height-$y-1, 0, $y, $width, 1);
}
imagejpeg($new, $newfile);
imagedestroy($back);
imagedestroy($new);
}
turn_y("./images/hee.jpg", "./images/hee11.jpg");
turn_x("./images/hee.jpg", "./images/hee12.jpg");
$b_x=imagesx($back);
$b_y=imagesy($back);
$dst=imagecreatefromjpeg($background);
for($i=0; $i for($j=0; $j $b_clr1= imagecolorsforindex($back, imagecolorat($back, $i-1, $j-1));\前のピクセルカラー配列
$b_clr2=imagecolorsforindex($back, imagecolorat($back, $i, $j));現在の色の配列を取得します
$r=intval($b_clr2["red"]+$degree*($b_clr2["red"]-$b_clr1["red"]));\深化
$g=intval($b_clr2["green" ]+$degree*($b_clr2["green"]-$b_clr1["green"]));
$b=intval($b_clr2["blue"]+$degree*($b_clr2["blue"]- $b_clr1["青"]));
$r=min(255, max($r, 0));//r の範囲を 0 ~ 255 に制限します
$g=min(255, max($g, 0));
$b=最小 (255, 最大 ($b, 0));
if(($d_clr=imagecolorexact($dst, $r, $g, $b))==-1){//1 に等しいが色の範囲外です
$d_clr=Imagecolorallocate($dst, $r) , $g , $b);//色を作成します
}
imagesetpixel($dst, $i, $j, $d_clr);
}
}
imagejpeg($dst, $save);
imagedestroy($back);
imagedestroy($dst);
}
sharp("./images/hee.jpg", 20, "./images/hee13.jpg");