PHP | ImagickDraw setStrokeLineCap() Function

The ImagickDraw::setStrokeLineCap() function is an inbuilt function in PHP which is used to set the shape to be used at the end of open subpaths when they are stroked.
Syntax:
bool ImagickDraw::setStrokeLineCap( int $linecap )
Parameters: This function accepts a single parameter $linecap which holds an integer value corresponding to one of LINECAP constants.
List of LINECAP constants are given below:
- imagick::LINECAP_UNDEFINED (0)
- imagick::LINECAP_BUTT (1)
- imagick::LINECAP_ROUND (2)
- imagick::LINECAP_SQUARE (3)
Return Value: This function returns TRUE on success.
Exceptions: This function throws ImagickException on error.
Below programs illustrate the ImagickDraw::setStrokeLineCap() function in PHP:
Program 1:
| <?php  Â// Create a new ImagickDraw object $draw= newImagickDraw();    Â// Set the stroke line cap $draw->setStrokeLineCap(2);  Â// Get the stroke line cap $lineCap= $draw->getStrokeLineCap(); echo$lineCap; ?>  | 
Output:
2 // Which corresponds to imagick::LINECAP_ROUND
Program 2:
| <?php  Â// Create a new ImagickDraw object $draw= newImagickDraw();    Â// Create a new imagick object $imagick= newImagick();    Â// Create a image on imagick object $imagick->newImage(800, 250, 'grey');    Â// Create a new ImagickDraw object $draw= newImagickDraw();    Â// Set the color of stroke $draw->setStrokeColor('red');  Â// Set stroke width $draw->setStrokeWidth(3);    Â// Set the font size $draw->setFontSize(25);   Â // Set the stroke dash array $draw->setStrokeDashArray([20]);  Â// Set the stroke line cap $draw->setStrokeLineCap(3);    Â// Draw a circle $draw->circle(250, 150, 330, 130);  Â// Render the draw commands $imagick->drawImage($draw);    Â// Show the output $imagick->setImageFormat('png'); header("Content-Type: image/png");  Âecho$imagick->getImageBlob(); ?>  | 
Output:
Reference: https://www.php.net/manual/en/imagickdraw.setstrokelinecap.php
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, zambiatek Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!
 
				 
					


