ホームページ >バックエンド開発 >PHPチュートリアル >PHP画像処理関数完全集(おすすめ集)_PHPチュートリアル

PHP画像処理関数完全集(おすすめ集)_PHPチュートリアル

WBOY
WBOYオリジナル
2016-07-21 15:00:49910ブラウズ

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 定数に対応。インデックス 3 は、IMG タグ
imagedestroy(picture resource);
に直接使用できる内容「height="yyy" width="xxx"」を持つテキスト文字列です。

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. シャープ化

imagecolorsforindex()
imagecolorat()
画像上にグラフィックを描画します $img=imagecreatefromgif("./images/map.gif");


コードをコピーします コードは次のとおりです:
/**
* 画像の鮮明化プロセス
*/
$red= imagecolorallocate($img, 255, 0, 0);

imageline($img, 0, 0, 100, 100, $red );
imageellipse($img, 200, 100, 100, 100, $red);
imagegif($img, "./images/map2.gif");
imagedestroy($img);
通常の画像スケーリング
コードは次のとおりです:

$filename="./images/hee.jpg";
$per=0.3;
list($width, $height)=getimagesize($filename);
$n_w=$width*$ per;
$n_h= $width*$per;
$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);

画像は比例的に拡大縮小され、透明色は処理されません
コードは次のとおりです:
function thumn($background, $width, $height , $newfile) {
list($s_w, $s_h)= getimagesize($background);//元の画像の高さと幅を取得します
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");

gif 透明色処理
コードは以下の通りです。
function thumn($background, $width, $height, $newfile) {
list ($s_w, $s_h)=getimagesize($background);
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");


画像のトリミング


コードをコピーコードは次のとおりです:

/**
* 画像のトリミングプロセス
* www.jbxue.com による編集
*/
function Cut($background, $cut_x, $cut_y, $cut_width, $cut_height, $location){
$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") ;
?>

图片加水印文字水印
复制代代码如下:

/**
*
* 写真にテキストの透かしを追加します
*/

function mark_text($background, $text , $x, $y){
$back=imagecreatefromjpeg($background);
$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", "./ image/gaolf.gif", 50, 200);

图片旋转
复制代代码如下:

/**
* 画像の回転
*/
$back=imagecreatefromjpeg( "./images/hee.jpg");

$new=imagerotate($back, 45, 0);
imagejpeg($new, "./images/hee9.jpg");
?>

図片水平翻转垂直翻转
复制代代码如下:

/**
* 画像を水平方向に反転します 垂直方向に反転します
*/
functionturn_y($background, $newfile){
$back=imagecreatefromjpeg($背景);
$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);
}
functionturn_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");
?>

www.bkjia.comtru​​ehttp://www.bkjia.com/PHPjc/328047.html技術記事一、创建创片资源 imagecreatetruecolor(width,height); imagecreatefromgif(画像名); imagecreatefrompng(画像名); imagecreatefromjpeg(画像名);さまざまな画像を描き出す...
声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。