Imagick::resampleImage

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

Imagick::resampleImage — Resample image to desired resolution

Описание

bool Imagick::resampleImage ( float $x_resolution , float $y_resolution , int $filter , float $blur )
Внимание

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

Resample image to desired resolution.

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

x_resolution

y_resolution

filter

blur

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

Returns TRUE on success.

Коментарии

Lets say you want to reduce the resolution of uploaded images for the web.

The following will load a image at whatever resolution and resample it down to 72 dpi and save as a different file.

The dpi for setImageResolution() and resampleImage() should be whatever dpi your resampling too.

<?php
$image 
= new Imagick();
$image->readImage('image.jpg');
$image->setImageResolution(72,72);
$image->resampleImage(72,72,imagick::FILTER_UNDEFINED,0);
$image->writeImage('image72.jpg');
?>
2011-12-02 22:14:06
http://php5.kiev.ua/manual/ru/function.imagick-resampleimage.html

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