Friday, November 14, 2025
HomeLanguagesPHP | Imagick setImageScene() Function

PHP | Imagick setImageScene() Function

The Imagick::setImageScene() function is an inbuilt function in PHP which is used to set the image scene. The value of scene contains an integer value.

Syntax:

bool Imagick::setImageScene( int $scene )

Parameters: This function accepts a single parameter $scene which holds the scene.

Return Value: This function returns TRUE on success.

Exceptions: This function throws ImagickException on error.

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

Program 1:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
   
// Set the scene
$imagick->setImageScene(500);
  
// Get the scene
$scene = $imagick->getImageScene();
  
echo $scene;
?>


Output:

500

Program 2:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
   
// Set the image scene
$imagick->setImageScene(6);
  
// Set the image colorspace
$imagick->setImageColorspace($imagick->getImageScene());
  
// Display the image
header("Content-Type: image/png");
echo $imagick->getImageBlob();
?>


Output:

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

RELATED ARTICLES

Most Popular

Dominic
32399 POSTS0 COMMENTS
Milvus
95 POSTS0 COMMENTS
Nango Kala
6765 POSTS0 COMMENTS
Nicole Veronica
11917 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11984 POSTS0 COMMENTS
Shaida Kate Naidoo
6889 POSTS0 COMMENTS
Ted Musemwa
7141 POSTS0 COMMENTS
Thapelo Manthata
6837 POSTS0 COMMENTS
Umr Jansen
6839 POSTS0 COMMENTS