文章主要介紹了PHP影像處理技術,結合例項形式總結分析了php繪圖、水印、驗證碼、影像壓縮等相關函式、功能與圖形繪製實現技巧,需要的朋友可以參考下:
1、繪圖
場景: 驗證碼、影像水印、影像壓縮處理
php繪圖座標體系是從0,0點越向右值越大,越向下值越大
需要開啟php的gd2擴充套件 php.ini 中
引數1:影像資源(畫布)
引數2:開始的x軸座標
引數3:開始的y軸座標
引數4:結束的x軸座標
引數5:結束的y軸座標
引數6:線條的顏色
(1)繪製線條:imageline($p1, $p2, $p3, $p4, $p5, $6)
(2)繪製三角形:imageline($p1, $p2, $p3, $p4, $p5, $6)// 需要3次
(3)繪製矩形:imagerectangle($p1, $p2, $p3, $p4, $p5, $6)
(3.1)繪製並填充矩形:imagefilledrectangle($p1, $p2, $p3, $p4, $p5, $6)
(4)繪製橢圓:imageellipse($p1, $p2, $p3, $p4, $p5, $6)
(4.1)繪製並填充橢圓:imagefilledellipse($p1, $p2, $p3, $p4, $p5, $6)
引數1:目標影像
引數2:原始影像
引數3:目標影像座標x
引數4:目標影像座標y
引數5:原始影像開始座標x
引數6:原始影像開始座標y
引數7:原始影像寬度
引數8:原始影像高度
(5)將圖片繪製到畫布上:imagecopy ( $p1, $p2, $p3, $p4, $p5, $6, $7, $8)
引數1:目標影像
引數2:字型 1,2,3,4 或 5,則使用內建字型
引數3:目標影像座標x
引數4:目標影像座標y
引數5:字元,文字
引數6:顏色
(6)繪製字串:imagestring( $p1, $p2, $p3, $p4, $p5, $6)// 向畫布寫入字元,文字
引數1:影像資源
引數2:字型大小
引數3:傾斜角度
引數4:x軸座標
引數5:y軸座標
引數6:字型顏色
引數7:字型檔案
引數8:文字
(7)繪製中文:imagettftext($p1, $p2, $p3, $p4, $p5, $6, $7, $8)
引數1:影像資源
引數2:弧形開始x座標
引數3:弧形開始y座標
引數4:弧形寬度
引數5:弧形高度
引數6:弧形開始角度
引數7:弧形結束角度
引數8:繪圖顏色
(8)繪製弧形:imagearc($p1, $p2, $p3, $p4, $p5, $6, $7, $8)// 三點鐘的位置是起點(0度), 順時針方向繪畫
例項 - 弧形?
// 建立一個 200X200 的影像
$img
= imagecreatetruecolor(200, 200);
// 分配顏色
$white
= imagecolorallocate(
$img
, 255, 255, 255);
$black
= imagecolorallocate(
$img
, 0, 0, 0);
// 畫一個黑色的圓
imagearc(
$img
, 100, 100, 150, 150, 0, 360,
$black
);
// 將影像輸出到瀏覽器
header(
"Content-type: image/png"
);
imagepng(
$img
);
// 釋放記憶體
imagedestroy(
$img
);
引數1:影像資源
引數2:弧形開始x座標
引數3:弧形開始y座標
引數4:弧形寬度
引數5:弧形高度
引數6:弧形開始角度
引數7:弧形結束角度
引數8:繪圖顏色
引數9:填充樣式
- IMG_ARC_PIE: 用直線連線產生圓形邊界
- IMG_ARC_CHORD: 用直線連線了起始和結束點
- IMG_ARC_NOFILL: 明弧或弦只有輪廓,不填充
- IMG_ARC_EDGED:用直線將起始和結束點與中心點相連,和 IMG_ARC_NOFILL 一起使用是畫餅狀圖輪廓的好方法(而不用填充)
(9)繪製弧形並填充:imagefilledarc($p1, $p2, $p3, $p4, $p5, $6, $7, $8, $9)// 三點鐘的位置是起點(0度), 順時針方向繪畫
例項 - 弧形填充?
// 建立影像
$image
= imagecreatetruecolor(100, 100);
// 分配一些顏色
$white
= imagecolorallocate(
$image
, 0xFF, 0xFF, 0xFF);
$gray
= imagecolorallocate(
$image
, 0xC0, 0xC0, 0xC0);
$darkgray
= imagecolorallocate(
$image
, 0x90, 0x90, 0x90);
$navy
= imagecolorallocate(
$image
, 0x00, 0x00, 0x80);
$darknavy
= imagecolorallocate(
$image
, 0x00, 0x00, 0x50);
$red
= imagecolorallocate(
$image
, 0xFF, 0x00, 0x00);
$darkred
= imagecolorallocate(
$image
, 0x90, 0x00, 0x00);
// 建立 3D 效果
for
(
$i
= 60;
$i
> 50;
$i
--) {
imagefilledarc(
$image
, 50,
$i
, 100, 50, 0, 45,
$darknavy
, IMG_ARC_PIE);
imagefilledarc(
$image
, 50,
$i
, 100, 50, 45, 75 ,
$darkgray
, IMG_ARC_PIE);
imagefilledarc(
$image
, 50,
$i
, 100, 50, 75, 360 ,
$darkred
, IMG_ARC_PIE);
}
imagefilledarc(
$image
, 50, 50, 100, 50, 0, 45,
$navy
, IMG_ARC_PIE);
imagefilledarc(
$image
, 50, 50, 100, 50, 45, 75 ,
$gray
, IMG_ARC_PIE);
imagefilledarc(
$image
, 50, 50, 100, 50, 75, 360 ,
$red
, IMG_ARC_PIE);
// 輸出影像
header(
'Content-type: image/png'
);
imagepng(
$image
);
imagedestroy(
$image
);
效果
2、水印
使用imagestring()或者imagettftext()
例項 - 圖片加字?
// 建立一幅 100X30 的影像
$im
= imagecreate(100, 30);
// 白色背景和藍色文字
$bg
= imagecolorallocate(
$im
, 255, 255, 255);
$textcolor
= imagecolorallocate(
$im
, 0, 0, 255);
// 把字串寫在影像左上角
imagestring(
$im
, 5, 0, 0,
"Hello world!"
,
$textcolor
);
// 輸出影像
header(
"Content-type: image/png"
);
imagepng(
$im
);