Imagick::spliceImage

(PECL imagick 2, PECL imagick 3)

Imagick::spliceImageUne uma cor sólida na imagem

Descrição

public Imagick::spliceImage(
    int $width,
    int $height,
    int $x,
    int $y
): bool

Une uma cor sólida na imagem.

Parâmetros

width

height

x

y

Valor Retornado

Retorna true em caso de sucesso.

Exemplos

Example #1 Exemplo de Imagick::spliceImage()

<?php
function spliceImage($imagePath, $startX, $startY, $width, $height) {
    $imagick = new \Imagick(realpath($imagePath));
    $imagick->spliceImage($width, $height, $startX, $startY);
    header("Content-Type: image/jpg");
    echo $imagick->getImageBlob();
}

?>