Open In App

PHP | Imagick getCopyright() Function

Last Updated : 11 Jul, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report
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 string that contain the copyright notice of ImageMagick and Magickwand C API. Below program illustrates the Imagick::getCopyright() function() in PHP: Program: php
<?php 
/*require_once('vendor/autoload.php');*/ 

/*Imagick Object*/

$image = new \Imagick();

/*Copyright of current Imagick Library*/

$string = $image->getCopyright();

/*String*/

echo $string;
?>
Output:
© 1999-2017 ImageMagick Studio LLC
Reference: https://www.php.net/manual/en/imagick.getcopyright.php

Similar Reads