$backGround = new \Imagick();
$backGround->newPseudoImage(
$imagick1->getImageWidth(),
$imagick1->getImageHeight(),
'pattern:checkerboard'
);
$backGround->compositeimage($imagick1, \Imagick::COMPOSITE_ATOP, 0, 0);
$backGround->setImageFormat('png');
header("Content-Type: image/png");
echo $backGround->getImageBlob();