<?php
bool public Imagick::extentImage(
int $width,
int $height,
int $x,
int $y
);
?>
<?php
// Run several times
$imageo = PATH2IMGW . '/others/19a.jpg';
$imager = 'img/results/19aext711.png';
$imagick = new Imagick($imageo);
$imagick->setImageBackgroundColor('cyan');
$imagick->extentImage(
$imagick->getImageWidth(),
$imagick->getImageHeight(), 100, 100);
$data = $imagick->getImageBlob();
$img = imagecreatefromstring($data);
imagejpeg($img, $imager);
echo basename($imager); ?>
<br><br>
<img src="<?php echo $imager; ?>"
alt="<?php echo $imager; ?>"
title="<?php echo $imager; ?>">