imagesetstyle 设定画线的风格

发表日期:2021-07-01 08:56:02 | 来源: | | 浏览(800) 分类:GD 和图像处理 函数

imagesetstyle

(PHP 4 >= 4.0.6, PHP 5, PHP 7, PHP 8)

imagesetstyle设定画线的风格

说明

imagesetstyle(resource $image, array $style): bool

imagesetstyle() 设定所有画线的函数(例如   imageline()   和 imagepolygon())在使用特殊颜色   IMG_COLOR_STYLED 或者用   IMG_COLOR_STYLEDBRUSHED 画一行图像时所使用的风格。

参数


  • image

  • 由图象创建函数(例如imagecreatetruecolor())返回的图象资源。

  • style

  • 像素组成的数组。你可以通过常量 IMG_COLOR_TRANSPARENT 来添加一个透明像素。


返回值

成功时返回 true, 或者在失败时返回 false

范例

下面的示例脚本在画布上从左上角到右下角画一行虚线:

示例 #1 imagesetstyle() 例子

<?php 
header("Content-type: image/jpeg");
$im  = imagecreatetruecolor(100, 100);
$w   = imagecolorallocate($im, 255, 255, 255);
$red = imagecolorallocate($im, 255, 0, 0);
/* 画一条虚线,5 个红色像素,5 个白色像素 */
$style = array($red, $red, $red, $red, $red, $w, $w, $w, $w, $w);
imagesetstyle($im, $style);
imageline($im, 0, 0, 100, 100, IMG_COLOR_STYLED);
/* 用 imagesetbrush() 和 imagesetstyle 画一行笑脸 */
$style = array($w, $w, $w, $w, $w, $w, $w, $w, $w, $w, $w, $w, $red);
imagesetstyle($im, $style);
$brush = imagecreatefrompng("http://www.libpng.org/pub/png/images/smile.happy.png");
$w2 = imagecolorallocate($brush, 255, 255, 255);
imagecolortransparent($brush, $w2);
imagesetbrush($im, $brush);
imageline($im, 100, 0, 0, 100, IMG_COLOR_STYLEDBRUSHED);
imagejpeg($im);
imagedestroy($im);
?>

以上例程的输出类似于:

21009b70229598c6a80eef8b45bf282b-imagesetstyle.jpg


参见



集速网 copyRight © 2015-2022 宁ICP备15000399号-1 宁公网安备 64010402001209号
与其临渊羡鱼,不如退而结网
欢迎转载、分享、引用、推荐、收藏。