Imagick::getCopyright


wizard apg

RETURNS the ImageMagick API.



<?php

string 
public static Imagick::getCopyright();

?>

 


This function has no parameters.





This function returns the ImageMagick API copyright as a STRING.



  1 EXERCISE   

<?php

// Run this exercise to see the Copyright notice

echo Imagick::getCopyright();

?>

 RESULT   

© 1999-2019 ImageMagick Studio LLC

  2 EXERCISE   

<?php

// Another way to view Copyright

$imag = new Imagick();

echo 
$imag->getCopyright();

?>

 RESULT   

© 1999-2019 ImageMagick Studio LLC