Friday, June 12, 2026
HomeLanguagesPHP | Imagick getOption() Function

PHP | Imagick getOption() Function

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
  
// Create a new imagick object
$imagick = new Imagick(
  
// Get the option with key 'key1'
$option = $imagick->getOption('key1');
echo $option;
?>


Output:

//Empty string because it is the default value.

Program 2:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
  
// 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

RELATED ARTICLES

4 COMMENTS

Most Popular

Dominic
32515 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6897 POSTS0 COMMENTS
Nicole Veronica
12013 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12109 POSTS0 COMMENTS
Shaida Kate Naidoo
7019 POSTS0 COMMENTS
Ted Musemwa
7262 POSTS0 COMMENTS
Thapelo Manthata
6976 POSTS0 COMMENTS
Umr Jansen
6963 POSTS0 COMMENTS