当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP imgesetthickness()用法及代码示例


imagesetthickness()是 PHP 中的一个内置函数,用于设置线条绘制的粗细。

用法

bool imagesetthickness($image, $thickness)

参数

imagesetthickness()接受两个参数 -$图像和$厚度。

  • $image− 该参数由imagecreatetruecolor() 等图像创建函数返回。它用于创建图像的大小。

  • $thickness− 此参数以像素为单位设置厚度。

返回值

imagesetthickness()成功时返回 True,失败时返回 False。

例子1

<?php
   // Create an image of a given size
   $img = imagecreatetruecolor(700, 300);
   $gray = imagecolorallocate($img, 0, 0, 255);
   $white = imagecolorallocate($img, 0xff, 0xff, 0xff);

   // Set the gray background color
   imagefilledrectangle($img, 0, 0, 700, 300, $gray);

   // Set the line thickness to 10
   imagesetthickness($img, 10);

   // Draw the rectangle
   imagerectangle($img, 30, 30, 200, 150, $white);
   
   // Output image to the browser
   header('Content-Type:image/png');
   imagepng($img);
   imagedestroy($img);
?>

输出

例子2

<?php
   // Create an image of given size using imagecreatetruecolor() function
   $img = imagecreatetruecolor(700, 300);
   $blue = imagecolorallocate($img, 0, 0, 255);
   $white = imagecolorallocate($img, 0xff, 0xff, 0xff);

   // Set the white background-color
   imagefilledrectangle($img, 0, 0, 300, 200, $blue);

   // Set the line thickness to 50
   imagesetthickness($img, 50);

   // Draw the white line
   imageline($img, 50, 50, 250, 50, $white);

   // Output image to the browser
   header('Content-Type:image/png');
   imagepng($img);
   imagedestroy($img);
?>

输出

相关用法


注:本文由纯净天空筛选整理自Urmila Samariya大神的英文原创作品 How to set the image thickness for line drawing using imgesetthickness() function in PHP?。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。