Friday, October 17, 2025
HomeLanguagesPHP | Imagick getImageProfiles() Function

PHP | Imagick getImageProfiles() Function

The Imagick::getImageProfiles() function is an inbuilt function in PHP which is used to get the image profiles.

Syntax:

array Imagick::getImageProfiles( string $pattern = "*", bool $include_values = TRUE )

Parameters: This function accepts two parameters as mentioned above and described below:

  • $pattern: It specifies the pattern for profile names. Its default value is * which gets all the available profiles.
  • $include_values: It specifies whether to return only profile names. The default value is TRUE. If FALSE then only profile names will be returned.

Return Value: This function returns an array containing the image profiles or just profile names.

Below programs illustrate the Imagick::getImageProfiles() function in PHP:

Program 1:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
  
// Set the Image Profile
$imagick->setImageProfile('borderColor', 'green');
$imagick->setImageProfile('borderWidth', '20');
  
  
// Get the Image Profiles
$profiles = $imagick->getImageProfiles();
print("<pre>".print_r($profiles, true)."</pre>");
?>


Output:

Array
(
    [bordercolor] => green
    [borderwidth] => 20
)

Program 2:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
  
// Set the Image Profile
$imagick->setImageProfile('borderColor', 'green');
$imagick->setImageProfile('borderWidth', '20');
  
  
// Get the Image Profiles without values
$profiles = $imagick->getImageProfiles("*", false);
print("<pre>".print_r($profiles, true)."</pre>");
?>


Output:

Array
(
    [0] => bordercolor
    [1] => borderwidth
)

Reference: https://www.php.net/manual/en/imagick.getimageprofiles.php

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS