GmagickDraw::setstrokewidth()函數是PHP中的內置函數,用於設置用於繪製對象輪廓的筆觸寬度。
用法:
public GmagickDraw::setstrokewidth( $stroke_width ) : GmagickDraw
參數:該函數接受單個參數$stroke_width,該參數用於保存筆劃寬度的值。它是一個浮點類型值。
返回值:成功時,此函數返回GmagickDraw對象。
以下示例程序旨在說明PHP中的GmagickDraw::setstrokewidth()函數:
程序1:
<?php
// Create new Gmagick object
$draw = new \GmagickDraw ();
// Set the stroke Color
$draw->setStrokeColor('Red');
// Set the image filled color
$draw->setFillColor('Green');
// Set the Stroke Width
$draw->setStrokeWidth(7);
// Draw the Circle
$draw->circle(250, 250, 100, 150);
// Create new Gmagick Object
$gmagick = new \Gmagick ();
// Set the dimensions of image
$gmagick ->newImage(500, 500, 'White');
// Set the image format
$gmagick ->setImageFormat("png");
// Draw the image
$gmagick ->drawImage($draw);
header("Content-Type: image/png");
// Display the image
echo $gmagick ->getImageBlob();
?>
輸出:
程序2:
<?php
// Create new Gmagick Object
$draw = new GmagickDraw ();
// Set the stroke color
$draw->setStrokeColor('black');
// Set the image filled color
$draw->setFillColor('lightgreen');
// Set the Stroke Width
$draw->setStrokeWidth(0);
// Draw the rectangle
$draw->rectangle(100, 100, 300, 300);
// Set Stroke Width
$draw->setStrokeWidth(15);
// Draw the rectangle
$draw->rectangle(400, 100, 600, 300);
// Create new Gmagick Object
$gmagick = new \Gmagick ();
// Set the dimensions of image
$gmagick ->newImage(800, 500, 'White');
// Set the image format
$gmagick ->setImageFormat("png");
// Draw the image
$gmagick ->drawImage($draw);
header("Content-Type: image/png");
// Display the image
echo $gmagick ->getImageBlob();
?>
輸出:
參考: http://php.net/manual/en/gmagickdraw.setstrokewidth.php
相關用法
- PHP ImagickDraw setStrokeWidth()用法及代碼示例
- PHP GmagickDraw arc()用法及代碼示例
- PHP GmagickDraw getstrokewidth()用法及代碼示例
- PHP GmagickDraw getstrokeopacity()用法及代碼示例
- PHP GmagickDraw getstrokecolor()用法及代碼示例
- PHP GmagickDraw setfont()用法及代碼示例
- PHP GmagickDraw settextencoding()用法及代碼示例
- PHP GmagickDraw getfontweight()用法及代碼示例
- PHP GmagickDraw getfont()用法及代碼示例
- PHP GmagickDraw getfontsize()用法及代碼示例
- PHP GmagickDraw getfontstyle()用法及代碼示例
- PHP GmagickDraw gettextdecoration()用法及代碼示例
- PHP GmagickDraw rectangle()用法及代碼示例
- PHP GmagickDraw gettextencoding()用法及代碼示例
- PHP GmagickDraw rotate()用法及代碼示例
注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | GmagickDraw setstrokewidth() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。