コード例 #1
0
ファイル: RGB.php プロジェクト: gravitymedia/magickly
 /**
  * {@inheritdoc}
  */
 public function getColorProfile()
 {
     if (null === $this->colorProfile) {
         $this->colorProfile = ColorProfile::fromFilename(__DIR__ . '/../../../resources/sRGB_IEC61966-2-1.icc');
     }
     return $this->colorProfile;
 }
コード例 #2
0
ファイル: Grayscale.php プロジェクト: gravitymedia/magickly
 /**
  * {@inheritdoc}
  */
 public function getColorProfile()
 {
     if (null === $this->colorProfile) {
         $this->colorProfile = ColorProfile::fromFilename(__DIR__ . '/../../../resources/Dot_Gain_15.icc');
     }
     return $this->colorProfile;
 }
コード例 #3
0
ファイル: CMYK.php プロジェクト: gravitymedia/magickly
 /**
  * {@inheritdoc}
  */
 public function getColorProfile()
 {
     if (null === $this->colorProfile) {
         $this->colorProfile = ColorProfile::fromFilename(__DIR__ . '/../../../resources/USWebUncoated.icc');
     }
     return $this->colorProfile;
 }