Imagick::shaveImage

(PECL imagick 2.0.0)

Imagick::shaveImageShaves pixels from the image edges

说锟斤拷

Imagick::shaveImage ( int $columns , int $rows ) : bool

Shaves pixels from the image edges. It allocates the memory necessary for the new Image structure and returns a pointer to the new image.

锟斤拷锟斤拷

columns

rows

锟斤拷锟斤拷值

锟缴癸拷时锟斤拷锟斤拷 TRUE锟斤拷

锟斤拷锟斤拷

Example #1 Imagick::shaveImage()

<?php
function shaveImage($imagePath) {
    
$imagick = new \Imagick(realpath($imagePath));
    
$imagick->shaveImage(10050);
    
header("Content-Type: image/jpg");
    echo 
$imagick->getImageBlob();
}

?>