Example #1
0
 /**
  * {@inheritdoc}
  */
 public function withColorProfile(ColorProfile $colorProfile)
 {
     $image = clone $this;
     $image->imagick->setImageProfile('icc', $colorProfile->getData());
     return $image;
 }
Example #2
0
 /**
  * {@inheritdoc}
  */
 public function withColorProfile(ColorProfile $colorProfile)
 {
     $image = clone $this;
     $image->gmagick->setimageprofile('ICM', $colorProfile->getData());
     return $image;
 }