La función Gmagick::getcopyright() es una función incorporada en PHP que se utiliza para devolver una string que contiene los derechos de autor actuales de la API de Gmagick.
Sintaxis:
string Gmagick::getcopyright( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor de retorno: esta función devuelve una string que contiene el aviso de derechos de autor de GraphicsMagick y Magickwand C API.
Errores/Excepciones: Esta función lanza GmagickException en caso de error.
Los siguientes programas ilustran la función Gmagick::getcopyright() en PHP:
Programa:
<?php // Create a Gmagick object $gmagick = new Gmagick(); // Use getcopyright() function $string = $gmagick->getcopyright(); // Output the string echo $string; ?>
Producción:
Copyright (C) 2002-2018 GraphicsMagick Group. Additional copyrights and licenses apply to this software. See http://www.GraphicsMagick.org/www/Copyright.html for details.
Referencia: http://php.net/manual/en/gmagick.getcopyright.php
Publicación traducida automáticamente
Artículo escrito por sarthak_ishu11 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA