画像関係アルゴリズム

白黒化、明るさの計算方法

単純に白黒化したい場合は、各色の平均値を求めるが、実際には各色が明るさに影響する割合が異なるため、以下のような式を用いる場合が多い。

明るさ=R×0.30+G×0.59+B×0.11

補色

色相環で、対抗位置にある色。 テキスト色と背景色等を決める場合に、目立つようになる。

sub get_complementary_color {
   my ($before_color) = @_;
   my ($after_color);
   if ($before_color =~ /^#([0-9A-Fa-f]{2})([0-9A-Fa-f]{2})([0-9A-Fa-f]{2})$/) {
       my ($r, $g, $b) = (hex $1, hex $2, hex $3);
       $after_color = sprintf "#%02lx%02lx%02lx", 255 - $r, 255 - $g, 255 - $b;
   }
   return $after_color;
}

トップ   編集 凍結 差分 バックアップ 添付 複製 名前変更 リロード   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS
Last-modified: 2018-09-15 (土) 07:31:37