萬盛學電腦網

 萬盛學電腦網 >> 網絡編程 >> php編程 >> PHP圖像操作教程:3D圖、縮放、旋轉、裁剪、添加水印

PHP圖像操作教程:3D圖、縮放、旋轉、裁剪、添加水印

   圖片操作在網站的應用相當廣范,特別是現在互聯網高度發達,很多內容都是以圖片來顯示,現在我們來講講用php來操作上傳的圖片,3D圖片繪制、圖片縮放、圖片旋轉、圖片裁剪、圖片添加水印。

  1、利用php gd庫的函數繪制3D扇形統計圖

代碼如下   <?php
header("content-type","text/html;charset=utf-8");
/*扇形統計圖*/
$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);

/*填充背景色*/
imagefill($image, 0, 0, $white);

/*3D制作*/
for($i = 60; $i > 50; $i--)
{
imagefilledarc($image, 50, $i, 100, 50, -160, 40, $darknavy, IMG_ARC_PIE);
imagefilledarc($image, 50, $i, 100, 50, 40, 75, $darkgray, IMG_ARC_PIE);
imagefilledarc($image, 50, $i, 100, 50, 75, 200, $darkred, IMG_ARC_PIE);
}

/*畫橢圓弧並填充*/
imagefilledarc($image, 50, 50, 100, 50, -160, 40, $darknavy, IMG_ARC_PIE);
imagefilledarc($image, 50, 50, 100, 50, 40, 75, $darkgray, IMG_ARC_PIE);
imagefilledarc($image, 50, 50, 100, 50, 75, 200, $darkred, IMG_ARC_PIE);


/*畫字符串*/
imagestring($image, 3, 15, 55, "30%", $white);
imagestring($image, 3, 45, 35, "60%", $white);
imagestring($image, 3, 60, 60, "10%", $white);

/*輸出圖像*/
header("content-type:image/png");
imagepng($image);

/*釋放資源*/
imagedestroy($image);
?>

  2、對圖片進行縮放

代碼如下   <div>
<h4>原圖大小</h4>
<img src="1.png" style="border:1px solid red;">
< /div>

< ?php
header("content-type","text/html;charset=utf-8");

/*
*圖片縮放
copyright © 萬盛學電腦網 all rights reserved