Imagick::setImageCompression

(No version information available, might be only in CVS)

Imagick::setImageCompression — Sets the image compression

Описание

bool Imagick::setImageCompression ( int $compression )
Внимание

К настоящему времени эта функция еще не была документирована; для ознакомления доступен только список аргументов.

Sets the image compression.

Список параметров

compression

Возвращаемые значения

Returns TRUE on success.

Errors/Exceptions

Throws ImagickException on error.

Коментарии

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
imagick.constants

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
2010-03-28 21:03:35
http://php5.kiev.ua/manual/ru/function.imagick-setimagecompression.html

    Поддержать сайт на родительском проекте КГБ