Open In App

PHP | Imagick getCopyright() Function

Last Updated : 26 Aug, 2019
Improve
Improve
Like Article
Like
Save
Share
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 
/*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: http://php.net/manual/en/imagick.getcopyright.php


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads