PHP | Imagick getReleaseDate() Function Last Updated : 28 Nov, 2019 Comments Improve Suggest changes Like Article Like Report The Imagick::getReleaseDate() function is an inbuilt function in PHP which is used to get the release date of ImageMagick. Syntax: string Imagick::getReleaseDate( void ) Parameters: This function doesn’t accepts any parameter. Return Value: This function returns a string value containing the release date. Exceptions: This function throws ImagickException on error. Below given programs illustrate the Imagick::getReleaseDate() function in PHP: Program 1: php <?php // Create a new imagick object $imagick = new Imagick(); // Get the Release date $releaseDate = $imagick->getReleaseDate(); echo $releaseDate; ?> Output: 2017-05-23 Program 2: php <?php // Create a new imagick object $imagick = new Imagick(); // Get the Release date $releaseDate = $imagick->getReleaseDate(); echo date("F j, Y", strtotime($releaseDate)); ?> Output: May 23, 2017 Reference: https://www.php.net/manual/en/imagick.getreleasedate.php Comment More infoAdvertise with us Next Article PHP | Imagick getReleaseDate() Function G gurrrung Follow Improve Article Tags : Web Technologies PHP PHP-function PHP-Imagick Similar Reads PHP | Gmagick getreleasedate() Function The Gmagick::getreleasedate() function is an inbuilt function in PHP which is used to return the GraphicsMagick release date as a string. Syntax: string Gmagick::getreleasedate( void )  Parameters: This function does not accept any parameter. Return Value: This function returns the GraphicsMagick r 1 min read PHP | Imagick getRegistry() Function The Imagick::getRegistry() function is an inbuilt function in PHP which is used to get the StringRegistry entry for the named key or false if not set. Syntax: string Imagick::getRegistry( string $key ) Parameters: This function accepts a single parameter $key which holds the key. Return Value: This 1 min read PHP | Imagick getResource() Function The Imagick::getResource() function is an inbuilt function in PHP which is used to get the specified resource's memory usage. Syntax:  int Imagick::getResource( int $type ) Parameters: This function accepts a single parameter $type which holds an integer value corresponding to one of RESOURCETYPE 1 min read PHP | Imagick getImageMatte() Function The Imagick::getImageMatte() function is an inbuilt function in PHP which is used to get the matte channel of an imagick object.Syntax:  bool Imagick::getImageMatte( void ) Parameters: This function does not accept any parameter.Return Value: This function returns True if image has a matte channel 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