PHP | Imagick getOption() Function Last Updated : 28 Nov, 2019 Comments Improve Suggest changes Like Article Like Report The Imagick::getOption() function is an inbuilt function in PHP which is used to get a value associated with the specified key. Syntax: string Imagick::getOption( string $key ) Parameters: This function accepts a single parameter $key which holds the name of option. Return Value: This function returns a string value containing the value associated with the key. Exceptions: This function throws ImagickException on error. Below given programs illustrate the Imagick::getOption() function in PHP: Program 1: php <?php // Create a new imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); // Get the option with key 'key1' $option = $imagick->getOption('key1'); echo $option; ?> Output: //Empty string because it is the default value. Program 2: php <?php // Create a new imagick object $imagick = new Imagick( 'https://media.geeksforgeeks.org/wp-content/uploads/geeksforgeeks-13.png'); // Set the option $imagick->setOption('key1', 'option1'); // Get the option with key 'key1' $option = $imagick->getOption('key1'); echo $option; ?> Output: option1 Reference: https://www.php.net/manual/en/imagick.getoption.php Comment More infoAdvertise with us Next Article PHP | Imagick getOption() Function G gurrrung Follow Improve Article Tags : Web Technologies PHP PHP-function PHP-Imagick Similar Reads PHP | Imagick getFont() Function The Imagick::getFont() function is an inbuilt function in PHP which is used to get the font. Syntax: int Imagick::getFont( void ) Parameters: This function doesn't accept any parameters. Return Value: This function returns a string containing address of font file on success. Below program illustrate 1 min read PHP | Imagick getCompression() Function The Imagick::getCompression() function is an inbuilt function in PHP which is used to get the object compression type. Syntax: int Imagick::getCompression( void ) Parameters: This function does not accept any parameters. Return Value: This function returns an integer value on success. Below programs 1 min read PHP | Imagick getVersion() Function The Imagick::getVersion() function is an inbuilt function in PHP which is used to get the ImageMagick API version. Syntax: array Imagick::getVersion( void ) Parameters: This function does not accept any parameter. Return Value: This function returns the ImageMagick API version. Below programs illust 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 PHP | Imagick getSize() Function The Imagick::getSize() function is an inbuilt function in PHP which is used to get the size associated with the imagick object. Syntax: array Imagick::getSize( void ) Parameters: This function doesnât accepts any parameter. Return Value: This function returns an array with the keys "columns" and "ro 1 min read Like