Imagick::cropImage

(PECL imagick 2.0.0)

Imagick::cropImageExtracts a region of the image

Описание

bool Imagick::cropImage ( int $width , int $height , int $x , int $y )
Внимание

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

Extracts a region of the image.

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

width

The width of the crop

height

The height of the crop

x

The X coordinate of the cropped region's top left corner

y

The Y coordinate of the cropped region's top left corner

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

В случае успешной работы возвращает TRUE.

Ошибки

Бросает ImagickException при ошибке.

Коментарии

If you're working with animated gif you might want to process this way (Probably not the best, but at least it works) : 

$picture = new Imagick('animated_gif.gif');

//Crop first image
$picture->cropImage($width, $height, $x, $y);

//Crop every other image
while($picture->hasNextImage()){
    $this->nextImage();
    $this->cropImage($width, $height, $x, $y);
}

//display image
$picture->getImageBlob();
2007-08-01 18:39:02
http://php5.kiev.ua/manual/ru/function.imagick-cropimage.html
There is an easiest way to crop an image : 

$picture = new Imagick('animated_gif.gif');

foreach($picture as $frame){
    $frame->cropImage($width, $height, $x, $y);
}
2007-08-02 16:35:46
http://php5.kiev.ua/manual/ru/function.imagick-cropimage.html
Автор:
When cropping gif-images (I had no problems with jpg and png images), the canvas is not removed. Please run the following command on the cropped gif, to remove the blank space:

$im->setImagePage(0, 0, 0, 0);
2010-04-09 13:57:52
http://php5.kiev.ua/manual/ru/function.imagick-cropimage.html
Автор:
Actually, the Imagick::setImagePage(0,0,0,0) is also handy with jpgs and pngs, if you plan to do any more changes on the cropped image that involves positioning and/or gravity (I created a script that does crop, face blur and watermarking in one go, and had a hell of a time determining why the blurs and the watermark text never showed up...).
2010-11-05 18:55:40
http://php5.kiev.ua/manual/ru/function.imagick-cropimage.html

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