Open In App

PHP | ImagickDraw getClipPath() Function

Last Updated : 23 Dec, 2019
Comments
Improve
Suggest changes
Like Article
Like
Report
The ImagickDraw::getClipPath() function is an inbuilt function in PHP which is used to get the current clipping path ID. Syntax:
string ImagickDraw::getClipPath( void )
Parameters: This function doesn’t accept any parameter. Return Value: This function returns an string value containing the clip path ID or false if no clip path exists. Exceptions: This function throws ImagickException on error. Below given programs illustrate the ImagickDraw::getClipPath() function in PHP: Program 1: php
<?php

// Create a new ImagickDraw object
$draw = new ImagickDraw();

// Get clip path
echo $draw->getClipPath();
?>
Output:
//This will return empty string because default value is empty.
Program 2: php
<?php

// Create a new ImagickDraw object
$draw = new ImagickDraw();

// Set the clipPath
$draw->setClipPath('sample_name');

// Get clip path
echo $draw->getClipPath();
?>
Output:
sample_name
Reference: https://www.php.net/manual/en/imagickdraw.getclippath.php

Next Article

Similar Reads