最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php imageantialias
时间:2022-07-02 09:53:49 编辑:袖梨 来源:一聚教程网
imageantialias
(PHP 4 >= 4.3.2, PHP 5)
描述
布尔imageantialias($sourc,$bool)
激活的行反走样快速绘制方法和有线多边形。它不支持阿尔法组件。它可以使用直接混合操作。但它只能在真彩色图像。
厚度和风格不支持。
使用透明背景颜色抗锯齿原语可以结束一些意想不到的结果。混合方法使用任何其他颜色的背景颜色。阿尔法组件的支持,缺乏不允许一个字母为基础的抗锯齿方法
图片
图像资源,通过创造的图像功能,如,一返回imagecreatetruecolor()。
启用
是否启用抗锯齿与否。
返回值
返回TRUE,成功或失败则返回FALSE
php
// Setup an anti-aliased image and a normal image
$aa = imagecreatetruecolor(400, 100);
$normal = imagecreatetruecolor(200, 100);
// Switch antialiasing on for one image
imageantialias($aa, true);
// Allocate colors
$red = imagecolorallocate($normal, 255, 0, 0);
$red_aa = imagecolorallocate($aa, 255, 0, 0);
// Draw two lines, one with AA enabled
imageline($normal, 0, 0, 200, 100, $red);
imageline($aa, 0, 0, 200, 100, $red_aa);
// Merge the two images side by side for output (AA: left, Normal: Right)
imagecopymerge($aa, $normal, 200, 0, 0, 0, 200, 100, 100);
// Output image
header('Content-type: image/png');
imagepng($aa);
imagedestroy($aa);
imagedestroy($normal);
?>
相关文章
- 以闪亮之名店长体验流霞季怎么玩 缘溪临霞套装活动介绍 12-31
- 未定事件簿旧梦新生左然篇怎么玩 旧梦新生左然篇活动介绍 12-31
- 未定事件簿左然破浪远行怎么样 12-31
- 桃源深处有人家行医问诊怎么玩 12-31
- 恋与制作人跨年福利有哪些 恋与制作人跨年福利内容介绍 12-31
- 阴阳师协同对弈大乱斗怎么玩 阴阳师协同对弈大乱斗活动介绍 12-31