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