位置: 编程技术 - 正文
推荐整理分享PHP:imageantialias()的用法_GD库图像处理函数,希望有所帮助,仅作参考,欢迎阅读内容。
文章相关热门搜索词:,内容如对您有帮助,希望把文章链接给更多的朋友!
(PHP 4 >= 4.3.2, PHP 5)
imageantialias — 是否使用抗锯齿(antialias)功能
说明 bool imageantialias ( resource $image , bool $enabled )对线段和多边形启用快速画图抗锯齿方法。不支持 alpha 部分。使用直接混色操作。仅用于真彩色图像。
不支持线宽和风格。
使用抗锯齿和透明背景色可能出现未预期的结果。混色方法把背景色当成任何其它颜色使用。缺乏 alpha 部分的支持导致不允许基于 alpha 抗锯齿方法。
参数image
由图象创建函数(例如imagecreatetruecolor())返回的图象资源。
enabled是否启用抗锯齿。
返回值成功时返回 TRUE, 或者在失败时返回 FALSE。
范例
Example #1 A comparison of two lines, one with anti-aliasing switched on
<?php//Setupananti-aliasedimageandanormalimage$aa=imagecreatetruecolor(,);$normal=imagecreatetruecolor(,);//Switchantialiasingonforoneimageimageantialias($aa,true);//Allocatecolors$red=imagecolorallocate($normal,,0,0);$red_aa=imagecolorallocate($aa,,0,0);//Drawtwolines,onewithAAenabledimageline($normal,0,0,,,$red);imageline($aa,0,0,,,$red_aa);//Mergethetwoimagessidebysideforoutput(AA:left,Normal:Right)imagecopymerge($aa,$normal,,0,0,0,,,);//Outputimageheader('Content-type:image/png');imagepng($aa);imagedestroy($aa);imagedestroy($normal);?>以上例程的输出类似于:
注释Note: 此函数仅在与 GD 库捆绑编译的 PHP 版本中可用。
参见imagecreatetruecolor() - 新建一个真彩色图像
PHP:imagealphablending()的用法_GD库图像处理函数 imagealphablending(PHP4=4.0.6,PHP5)imagealphablending设定图像的混色模式说明boolimagealphablending(resource$image,bool$blendmode)imagealphablending()允许在真彩色图像上使用两种
PHP:getimagesize()的用法_GD库图像处理函数 getimagesize(PHP4,PHP5)getimagesize取得图像大小说明arraygetimagesize(string$filename[,array&$imageinfo])getimagesize()函数将测定任何GIF,JPG,PNG,SWF,SWC,PSD,TIFF,BMP,IFF
PHP:imageaffine()的用法_GD库图像处理函数 imageaffine(PHP5=5.5.0)imageaffine返回经过仿射变换后的图像,剪切区域可选说明resourceimageaffine(resource$image,array$affine[,array$clip])Warning本函数还未编写文档,仅
标签: PHP:imageantialias()的用法_GD库图像处理函数
本文链接地址:https://www.jiuchutong.com/biancheng/288390.html 转载请保留说明!友情链接: 武汉网站建设