PHP | Gmagick getcopyright() Function Last Updated : 28 Aug, 2019 Comments Improve Suggest changes Like Article Like Report The Gmagick::getcopyright() function is an inbuilt function in PHP which is used to returns a string containing current Gmagick API copyright. Syntax: string Gmagick::getcopyright( void ) Parameters: This function does not accept any parameter. Return Value: This function returns a string which contains the copyright notice of GraphicsMagick and Magickwand C API. Errors/Exceptions: This function throws GmagickException on error. Below programs illustrate the Gmagick::getcopyright() function in PHP: Program: php <?php // Create a Gmagick object $gmagick = new Gmagick(); // Use getcopyright() function $string = $gmagick->getcopyright(); // Output the string echo $string; ?> Output: Copyright (C) 2002-2018 GraphicsMagick Group. Additional copyrights and licenses apply to this software. See http://www.GraphicsMagick.org/www/Copyright.html for details. Reference: http://php.net/manual/en/gmagick.getcopyright.php Comment More infoAdvertise with us Next Article PHP | Gmagick getcopyright() Function S sarthak_ishu11 Follow Improve Article Tags : Web Technologies PHP Image-Processing PHP-function PHP-Gmagick +1 More Similar Reads PHP | Imagick getCopyright() Function The Imagick::getCopyright() function is an inbuilt function in PHP which is used to returns the current ImageMagick API copyright which is used as a string. Syntax: string Imagick::getCopyright( void ) Parameter: This function does not accept any parameter. Return Value: This function returns a stri 1 min read PHP | Gmagick getsize() Function The Gmagick::getsize() function is an inbuilt function in PHP which is used to get the size associated with the Gmagick object. Syntax: array Gmagick::getsize( void ) Parameters: This function doesnât accept any parameter. Return Value: This function returns an associative array containing the keys 1 min read PHP | Gmagick getimagetype() Function The Gmagick::getimagetype() function is an inbuilt function in PHP which is used to get the image type. Syntax: int Gmagick::getimagetype( void ) Parameters: This function doesnât accept any parameters. Return Value: This function returns an integer value corresponding to one of the IMGTYPE constant 1 min read PHP | Gmagick getimageheight() Function The Gmagick::getimageheight() function is an inbuilt function in PHP which is used to get the image height which is the vertical length of the image. Syntax: int Gmagick::getimageheight( void ) Parameters: This function doesnât accept any parameters. Return Value: This function returns an integer va 1 min read PHP | Imagick getPage() Function The Imagick::getPage() function is an inbuilt function in PHP which is used to return the geometry of page associated with Imagick object in associative array format. Syntax: array Imagick::getPage( void ) Parameters:This function does not accept any parameter. Return Value: This function returns an 1 min read Like