Open In App

PHP | Gmagick getimageprofile() Function

Last Updated : 21 Jan, 2020
Improve
Improve
Like Article
Like
Save
Share
Report

The Gmagick::getimageprofile() function is an inbuilt function in PHP which is used to get the named image profile.

Syntax:

string Gmagick::getimageprofile( string $name )

Parameters: This function accepts a single parameter $name which holds the name of the profile.

Return Value: This function returns a string value containing the value of profile.

Exceptions: This function throws GmagickException on error.

Below given programs illustrate the Gmagick::getimageprofile() function in PHP:

Used Image:

Program 1:




<?php
  
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
  
// Set the image profile
$gmagick->setimageprofile('profile_name', 'profile_value');
  
// Get the image profile
$profile = $gmagick->getimageprofile("profile_name");
echo $profile;
?>


Output:

profile_value

Program 2:




<?php
  
// Create a new Gmagick object
$gmagick = new Gmagick('geeksforgeeks.png');
  
// Set the blur using image profile 
$gmagick->setImageProfile('blur', '10'); 
    
// Use the image profile 
$gmagick->blurimage($gmagick->getImageProfile('blur'), 9); 
    
// Display the image 
header("Content-Type: image/png"); 
echo $gmagick->getImageBlob(); 
?> 


Output:

Reference: https://www.php.net/manual/en/gmagick.getimageprofile.php



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads