Above it says "One of the COMPRESSION constants" for the parameters. For any of you that found this confusing, you can find a list of the constants here:
Predefined Constants
http://www.php.net/manual/en/imagick.constants.php
As an example for working with a jpeg image:
<?php
$image = 'jpeg_image.jpg';
$comression_type = Imagick::COMPRESSION_JPEG;
$im = new Imagick($image);
$im->setImageCompression($compression_type);
?>
This class does not actually compress the images but rather sets the compression type that is going to be used.
If you would like to see how to compress the image see:
Imagick::setImageCompressionQuality
Imagick::setImageCompression
(PECL imagick 2.0.0)
Imagick::setImageCompression — Sets the image compression
Descrizione
bool Imagick::setImageCompression
( int
$compression
)
Elenco dei parametri
-
compression -
One of the
COMPRESSIONconstants
Valori restituiti
Restituisce TRUE in caso di successo.
Errori/Eccezioni
Lancia una ImagickException in caso di errore.
snipes2083 [at] yahoo com ¶
3 years ago
