(PECL imagick 2.0.0)
Imagick::spliceImage — Joint une couleur solide dans l'image
$width
, int $height
, int $x
, int $y
)Joint une couleur solide dans l'image.
width
height
x
y
Retourne TRUE
en cas de succès.
Exemple #1 Exemple avec 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();
}
?>