コード例 #1
0
ファイル: Grayscale.class.php プロジェクト: easytp/easytp
 /**
  * {@inheritdoc}
  */
 public function profile()
 {
     if (!$this->profile) {
         $this->profile = Profile::fromPath(__DIR__ . '/../../resources/colormanagement.org/ISOcoated_v2_grey1c_bas.ICC');
     }
     return $this->profile;
 }
コード例 #2
0
ファイル: RGB.class.php プロジェクト: easytp/easytp
 /**
  * {@inheritdoc}
  */
 public function profile()
 {
     if (!$this->profile) {
         $this->profile = Profile::fromPath(__DIR__ . '/../../resources/color.org/sRGB_IEC61966-2-1_black_scaled.icc');
     }
     return $this->profile;
 }
コード例 #3
0
ファイル: CMYK.class.php プロジェクト: easytp/easytp
 /**
  * {@inheritdoc}
  */
 public function profile()
 {
     if (!$this->profile) {
         $this->profile = Profile::fromPath(__DIR__ . '/../../resources/Adobe/CMYK/USWebUncoated.icc');
     }
     return $this->profile;
 }