public function insert(ImageProcessorInterface $image, $x = 0, $y = 0)
 {
     return $this->image->paste($image->getImage(), new Point($x, $y));
 }
 public function insert(ImageProcessorInterface $image, $x = 0, $y = 0)
 {
     return $this->image->insert($image->getImage(), 'top-left', $x, $y);
 }