位置: 编程技术 - 正文
推荐整理分享PHP:imageline()的用法_GD库图像处理函数(php imagecopymerge),希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:php imagecopy,php中imagestring,php img,php中imagestring,php imagefill,php image,php中imagestring,php imagefill,内容如对您有帮助,希望把文章链接给更多的朋友!
(PHP 4, PHP 5)
imageline — 画一条线段
说明 bool imageline ( resource $image , int $x1 , int $y1 , int $x2 , int $y2 , int $color )imageline() 用 color 颜色在图像 image 中从坐标 x1,y1 到 x2,y2(图像左上角为 0, 0)画一条线段。
Example #1 画一条粗线
<?phpfunctionimagelinethick($image,$x1,$y1,$x2,$y2,$color,$thick=1){/*下面两行只在线段直角相交时好使imagesetthickness($image,$thick);returnimageline($image,$x1,$y1,$x2,$y2,$color);*/if($thick==1){returnimageline($image,$x1,$y1,$x2,$y2,$color);}$t=$thick/2-0.5;if($x1==$x2||$y1==$y2){returnimagefilledrectangle($image,round(min($x1,$x2)-$t),round(min($y1,$y2)-$t),round(max($x1,$x2)+$t),round(max($y1,$y2)+$t),$color);}$k=($y2-$y1)/($x2-$x1);//y=kx+q$a=$t/sqrt(1+pow($k,2));$points=array(round($x1-(1+$k)*$a),round($y1+(1-$k)*$a),round($x1-(1-$k)*$a),round($y1-(1+$k)*$a),round($x2+(1+$k)*$a),round($y2-(1-$k)*$a),round($x2+(1-$k)*$a),round($y2+(1+$k)*$a),);imagefilledpolygon($image,$points,4,$color);returnimagepolygon($image,$points,4,$color);}?>参见 imagecreatetruecolor() 和 imagecolorallocate()。
PHP:imagepng()的用法_GD库图像处理函数 imagepng(PHP4,PHP5)imagepng以PNG格式将图像输出到浏览器或文件说明boolimagepng(resource$image[,string$filename])imagepng()将GD图像流(image)以PNG格式输出到标准输出(
PHP:imagepsencodefont()的用法_GD库图像处理函数 imagepsencodefont(PHP4,PHP5)imagepsencodefont改变字体中的字符编码矢量说明boolimagepsencodefont(resource$font_index,string$encodingfile)从文件中加载字符编码矢量并用其替换
PHP:imagepolygon()的用法_GD库图像处理函数 imagepolygon(PHP4,PHP5)imagepolygon画一个多边形说明boolimagepolygon(resource$image,array$points,int$num_points,int$color)imagepolygon()在图像中创建一个多边形。points是一个PHP数
友情链接: 武汉网站建设