Thursday, December 11, 2025
HomeLanguagesPHP | Imagick setCompression() Function

PHP | Imagick setCompression() Function

The Imagick::setCompression() function is an inbuilt function in PHP which is used to set the object’s default compression type.

Syntax:

bool Imagick::setCompression( int $compression )

Parameters: This function accepts single parameter $compression which holds an integer matching to one of Imagick::COMPRESSION_* constants.

Return Value: This function returns TRUE on success.

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

Program 1:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
  
// Get the Compression
$compression = $imagick->getCompression();
  
echo $compression;
?>


Output:

0 (which corresponds with imagick::COMPRESSION_UNDEFINED)

Program 2:




<?php
  
// Create a new imagick object
$imagick = new Imagick(
  
// Set the Compression
$imagick->setCompression(5);
  
// Get the Compression
$compression = $imagick->getCompression();
  
echo $compression;
?>


Output:

5 (which corresponds with imagick::COMPRESSION_JPEG)

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

RELATED ARTICLES

Most Popular

Dominic
32440 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6811 POSTS0 COMMENTS
Nicole Veronica
11950 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12023 POSTS0 COMMENTS
Shaida Kate Naidoo
6943 POSTS0 COMMENTS
Ted Musemwa
7193 POSTS0 COMMENTS
Thapelo Manthata
6889 POSTS0 COMMENTS
Umr Jansen
6880 POSTS0 COMMENTS