ホームページ  >  記事  >  バックエンド開発  >  phpでの描画技術のポイントと応用まとめ

phpでの描画技術のポイントと応用まとめ

WBOY
WBOYオリジナル
2016-06-23 13:38:15973ブラウズ

描画は PHP の高度な部分であり、実際のアプリケーション開発プロセスでは、統計、ポリライン、列、その他のリアルタイムで更新されるグラフなど、さまざまな場所でテクノロジーの応用が見られます。通常の開発条件では、データはサーバーから取得されるため、純粋なアート手法で実装されます。つまり、データをわかりやすく表示する必要があります。描画技術を学ばずにこれを実現するのは困難です。そのため、変数を使用してビューを変更し、問題を解決するための推奨される方法をいくつか紹介します。描画とヒストグラム 作成プロセス:

一般的なプロセス:

<?php	$img_1=imagecreatetruecolor(400,300);//创键画布	$mycolor_1=imagecolorallocate($img_1, 255, 0, 0);//定义一个颜色(红色)	$mycolor_2=imagecolorallocate($img_1, 232,222,13);//定义一个颜色(黄色)	/*imageellipse($img_1, 150, 150, 50, 50, $mycolor_1);//定义绘的图的位置大小颜色(椭圆)	imageline($img_1, 150, 0, 150, 175, $mycolor_1);//画一个直线,起始的坐标,颜色	imagerectangle($img_1, 125, 175, 175, 225, $mycolor_1);//画一个矩形	imagefilledrectangle($img_1, 125, 175, 175, 225, $mycolor_2);//画一个填充矩形	imagearc($img_1, 100, 100, 50, 50, 0, 30, $mycolor_2);//单位角度的弧	imagefilledarc($img_1, 50, 200, 100, 100, 30, 120, $mycolor_1,IMG_ARC_PIE);//一个扇形*/	$add_image=imagecreatefromgif("./file/01.gif");//加载原图片	$image_information=getimagesize("./file/01.gif");//获取图片的宽和高	imagecopy($img_1, $add_image, 0, 0, 0, 0, $image_information[0], $image_information[1]);//复制目标图片到画板	//imagestring($img_1, 5, 200, 200, "Hello徐宁", $mycolor_1);//写入字符,不建议,很弱	$str1="你好!!";	imagettftext($img_1, 10, 30, 200, 200, $mycolor_1, "./file/02.TTC", $str1);//可以去window/fonts去找。	header("Content-type: image/png");//定义返回数据类型	imagepng($img_1);//输出并保存图像	imagedestroy($img_1);//销毁服务器资源?>

以下は、ヒストグラムの作成をテストするためのコード例です:

<?php//创建画布	$img_1=imagecreatetruecolor(500, 500);	$white=imagecolorallocate($img_1, 255, 255, 255);//填充画布的背景色	imagefill($img_1, 0, 0, $white);//分别对应红蓝灰还有他们的暗色	$red=imagecolorallocate($img_1, 255,24,0);	$darkred=imagecolorallocate($img_1, 146,12,0);	$blue=imagecolorallocate($img_1, 11,6,139);	$darkblue=imagecolorallocate($img_1, 5,5,52);	$gary=imagecolorallocate($img_1, 193,193,193);//从低至上进行叠加全部为暗色	$darkgary=imagecolorallocate($img_1, 142,142,144);	for($i=60; $i>=50; $i--){		imagefilledarc($img_1, 100, $i, 100, 50, 0, 35, $darkblue, IMG_ARC_PIE); 		imagefilledarc($img_1, 100, $i, 100, 50, 35, 75, $darkgary, IMG_ARC_PIE);		imagefilledarc($img_1, 100, $i, 100, 50, 75, 360, $darkred, IMG_ARC_PIE);	}//在最高层添加纯色层	imagefilledarc($img_1, 100, 50, 100, 50, 0, 35, $blue, IMG_ARC_PIE); 	imagefilledarc($img_1, 100, 50, 100, 50, 35, 75, $gary, IMG_ARC_PIE);	imagefilledarc($img_1, 100, 50, 100, 50, 75, 360, $red, IMG_ARC_PIE);//定义,保存,显示,销毁	header("Content-type: image/png");	imagepng($img_1);	imagedestroy($img_1);?>

上記には、難しくないいくつかの単純なアルゴリズムも含まれています。比較的面倒ですが、データの動的表示における利点は明らかです。

声明:
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。