Mercurial > emacs
annotate lisp/color.el @ 112341:1bdb2b6bdebb
* admin/notes/bzr: Add some more bzrmerge details.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Mon, 17 Jan 2011 18:22:36 -0800 |
parents | b1eac6d41a93 |
children |
rev | line source |
---|---|
111711
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
1 ;;; color.el --- Color manipulation laboratory routines -*- coding: utf-8; -*- |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
2 |
112235
b1eac6d41a93
[Gnus] Update copyright years.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
112000
diff
changeset
|
3 ;; Copyright (C) 2010, 2011 Free Software Foundation, Inc. |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
4 |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
5 ;; Author: Julien Danjou <julien@danjou.info> |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
6 ;; Keywords: html |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
7 |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
8 ;; This file is part of GNU Emacs. |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
9 |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
10 ;; GNU Emacs is free software: you can redistribute it and/or modify |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
11 ;; it under the terms of the GNU General Public License as published by |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
12 ;; the Free Software Foundation, either version 3 of the License, or |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
13 ;; (at your option) any later version. |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
14 |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
15 ;; GNU Emacs is distributed in the hope that it will be useful, |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
18 ;; GNU General Public License for more details. |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
19 |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
20 ;; You should have received a copy of the GNU General Public License |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
22 |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
23 ;;; Commentary: |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
24 |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
25 ;; This package provides color manipulation functions. |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
26 |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
27 ;;; Code: |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
28 |
111702
087bcfbfa5ef
color-lab: Require 'cl when compiling.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111701
diff
changeset
|
29 (eval-when-compile |
087bcfbfa5ef
color-lab: Require 'cl when compiling.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111701
diff
changeset
|
30 (require 'cl)) |
087bcfbfa5ef
color-lab: Require 'cl when compiling.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111701
diff
changeset
|
31 |
111693
1cb16ad0d1bc
Merge changes made in Gnus trunk.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111678
diff
changeset
|
32 ;; Emacs < 23.3 |
111695
62d2be8b2bd2
color-lab.el: Add coding cookie.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111693
diff
changeset
|
33 (eval-and-compile |
62d2be8b2bd2
color-lab.el: Add coding cookie.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111693
diff
changeset
|
34 (unless (boundp 'float-pi) |
62d2be8b2bd2
color-lab.el: Add coding cookie.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111693
diff
changeset
|
35 (defconst float-pi (* 4 (atan 1)) "The value of Pi (3.1415926...)."))) |
111693
1cb16ad0d1bc
Merge changes made in Gnus trunk.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111678
diff
changeset
|
36 |
111711
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
37 (defun color-rgb->hex (red green blue) |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
38 "Return hexadecimal notation for RED GREEN BLUE color. |
111789
f97704487fb3
Merge changes made in Gnus trunk.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111732
diff
changeset
|
39 RED GREEN BLUE must be values between 0 and 1 inclusively." |
111711
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
40 (format "#%02x%02x%02x" |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
41 (* red 255) (* green 255) (* blue 255))) |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
42 |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
43 (defun color-complement (color) |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
44 "Return the color that is the complement of COLOR." |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
45 (let ((color (color-rgb->normalize color))) |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
46 (list (- 1.0 (car color)) |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
47 (- 1.0 (cadr color)) |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
48 (- 1.0 (caddr color))))) |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
49 |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
50 (defun color-complement-hex (color) |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
51 "Return the color that is the complement of COLOR, in hexadecimal format." |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
52 (apply 'color-rgb->hex (color-complement color))) |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
53 |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
54 (defun color-rgb->hsv (red green blue) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
55 "Convert RED GREEN BLUE values to HSV representation. |
111789
f97704487fb3
Merge changes made in Gnus trunk.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111732
diff
changeset
|
56 Hue is in radians. Saturation and values are between 0 and 1 |
f97704487fb3
Merge changes made in Gnus trunk.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111732
diff
changeset
|
57 inclusively." |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
58 (let* ((r (float red)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
59 (g (float green)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
60 (b (float blue)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
61 (max (max r g b)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
62 (min (min r g b))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
63 (list |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
64 (/ (* 2 float-pi |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
65 (cond ((and (= r g) (= g b)) 0) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
66 ((and (= r max) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
67 (>= g b)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
68 (* 60 (/ (- g b) (- max min)))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
69 ((and (= r max) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
70 (< g b)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
71 (+ 360 (* 60 (/ (- g b) (- max min))))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
72 ((= max g) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
73 (+ 120 (* 60 (/ (- b r) (- max min))))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
74 ((= max b) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
75 (+ 240 (* 60 (/ (- r g) (- max min))))))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
76 360) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
77 (if (= max 0) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
78 0 |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
79 (- 1 (/ min max))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
80 (/ max 255.0)))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
81 |
111711
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
82 (defun color-rgb->hsl (red green blue) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
83 "Convert RED GREEN BLUE colors to their HSL representation. |
111789
f97704487fb3
Merge changes made in Gnus trunk.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111732
diff
changeset
|
84 RED, GREEN and BLUE must be between 0 and 1 inclusively." |
111711
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
85 (let* ((r red) |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
86 (g green) |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
87 (b blue) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
88 (max (max r g b)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
89 (min (min r g b)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
90 (delta (- max min)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
91 (l (/ (+ max min) 2.0))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
92 (list |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
93 (if (= max min) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
94 0 |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
95 (* 2 float-pi |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
96 (/ (cond ((= max r) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
97 (+ (/ (- g b) delta) (if (< g b) 6 0))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
98 ((= max g) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
99 (+ (/ (- b r) delta) 2)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
100 (t |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
101 (+ (/ (- r g) delta) 4))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
102 6))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
103 (if (= max min) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
104 0 |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
105 (if (> l 0.5) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
106 (/ delta (- 2 (+ max min))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
107 (/ delta (+ max min)))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
108 l))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
109 |
111732
6098376da331
color.el: Rename various rgb functions to srgb.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111711
diff
changeset
|
110 (defun color-srgb->xyz (red green blue) |
6098376da331
color.el: Rename various rgb functions to srgb.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111711
diff
changeset
|
111 "Converts RED GREEN BLUE colors from the sRGB color space to CIE XYZ. |
111789
f97704487fb3
Merge changes made in Gnus trunk.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111732
diff
changeset
|
112 RED, BLUE and GREEN must be between 0 and 1 inclusively." |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
113 (let ((r (if (<= red 0.04045) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
114 (/ red 12.95) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
115 (expt (/ (+ red 0.055) 1.055) 2.4))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
116 (g (if (<= green 0.04045) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
117 (/ green 12.95) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
118 (expt (/ (+ green 0.055) 1.055) 2.4))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
119 (b (if (<= blue 0.04045) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
120 (/ blue 12.95) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
121 (expt (/ (+ blue 0.055) 1.055) 2.4)))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
122 (list (+ (* 0.4124564 r) (* 0.3575761 g) (* 0.1804375 b)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
123 (+ (* 0.21266729 r) (* 0.7151522 g) (* 0.0721750 b)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
124 (+ (* 0.0193339 r) (* 0.1191920 g) (* 0.9503041 b))))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
125 |
111732
6098376da331
color.el: Rename various rgb functions to srgb.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111711
diff
changeset
|
126 (defun color-xyz->srgb (X Y Z) |
6098376da331
color.el: Rename various rgb functions to srgb.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111711
diff
changeset
|
127 "Converts CIE X Y Z colors to sRGB color space." |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
128 (let ((r (+ (* 3.2404542 X) (* -1.5371385 Y) (* -0.4985314 Z))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
129 (g (+ (* -0.9692660 X) (* 1.8760108 Y) (* 0.0415560 Z))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
130 (b (+ (* 0.0556434 X) (* -0.2040259 Y) (* 1.0572252 Z)))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
131 (list (if (<= r 0.0031308) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
132 (* 12.92 r) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
133 (- (* 1.055 (expt r (/ 1 2.4))) 0.055)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
134 (if (<= g 0.0031308) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
135 (* 12.92 g) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
136 (- (* 1.055 (expt g (/ 1 2.4))) 0.055)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
137 (if (<= b 0.0031308) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
138 (* 12.92 b) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
139 (- (* 1.055 (expt b (/ 1 2.4))) 0.055))))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
140 |
111711
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
141 (defconst color-d65-xyz '(0.950455 1.0 1.088753) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
142 "D65 white point in CIE XYZ.") |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
143 |
111711
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
144 (defconst color-cie-ε (/ 216 24389.0)) |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
145 (defconst color-cie-κ (/ 24389 27.0)) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
146 |
111711
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
147 (defun color-xyz->lab (X Y Z &optional white-point) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
148 "Converts CIE XYZ to CIE L*a*b*. |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
149 WHITE-POINT can be specified as (X Y Z) white point to use. If |
111711
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
150 none is set, `color-d65-xyz' is used." |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
151 (destructuring-bind (Xr Yr Zr) (or white-point color-d65-xyz) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
152 (let* ((xr (/ X Xr)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
153 (yr (/ Y Yr)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
154 (zr (/ Z Zr)) |
111711
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
155 (fx (if (> xr color-cie-ε) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
156 (expt xr (/ 1 3.0)) |
111711
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
157 (/ (+ (* color-cie-κ xr) 16) 116.0))) |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
158 (fy (if (> yr color-cie-ε) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
159 (expt yr (/ 1 3.0)) |
111711
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
160 (/ (+ (* color-cie-κ yr) 16) 116.0))) |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
161 (fz (if (> zr color-cie-ε) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
162 (expt zr (/ 1 3.0)) |
111711
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
163 (/ (+ (* color-cie-κ zr) 16) 116.0)))) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
164 (list |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
165 (- (* 116 fy) 16) ; L |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
166 (* 500 (- fx fy)) ; a |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
167 (* 200 (- fy fz)))))) ; b |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
168 |
111711
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
169 (defun color-lab->xyz (L a b &optional white-point) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
170 "Converts CIE L*a*b* to CIE XYZ. |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
171 WHITE-POINT can be specified as (X Y Z) white point to use. If |
111711
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
172 none is set, `color-d65-xyz' is used." |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
173 (destructuring-bind (Xr Yr Zr) (or white-point color-d65-xyz) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
174 (let* ((fy (/ (+ L 16) 116.0)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
175 (fz (- fy (/ b 200.0))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
176 (fx (+ (/ a 500.0) fy)) |
111711
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
177 (xr (if (> (expt fx 3.0) color-cie-ε) |
111701
3fbe2d0ad0f8
color-lab.el: Fix all expt calls to use float type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111695
diff
changeset
|
178 (expt fx 3.0) |
111711
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
179 (/ (- (* fx 116) 16) color-cie-κ))) |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
180 (yr (if (> L (* color-cie-κ color-cie-ε)) |
111701
3fbe2d0ad0f8
color-lab.el: Fix all expt calls to use float type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111695
diff
changeset
|
181 (expt (/ (+ L 16) 116.0) 3.0) |
111711
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
182 (/ L color-cie-κ))) |
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
183 (zr (if (> (expt fz 3) color-cie-ε) |
111701
3fbe2d0ad0f8
color-lab.el: Fix all expt calls to use float type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111695
diff
changeset
|
184 (expt fz 3.0) |
111711
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
185 (/ (- (* 116 fz) 16) color-cie-κ)))) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
186 (list (* xr Xr) ; X |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
187 (* yr Yr) ; Y |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
188 (* zr Zr))))) ; Z |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
189 |
111732
6098376da331
color.el: Rename various rgb functions to srgb.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111711
diff
changeset
|
190 (defun color-srgb->lab (red green blue) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
191 "Converts RGB to CIE L*a*b*." |
111732
6098376da331
color.el: Rename various rgb functions to srgb.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111711
diff
changeset
|
192 (apply 'color-xyz->lab (color-srgb->xyz red green blue))) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
193 |
111711
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
194 (defun color-rgb->normalize (color) |
111789
f97704487fb3
Merge changes made in Gnus trunk.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111732
diff
changeset
|
195 "Normalize a RGB color to values between 0 and 1 inclusively." |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
196 (mapcar (lambda (x) (/ x 65535.0)) (x-color-values color))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
197 |
111732
6098376da331
color.el: Rename various rgb functions to srgb.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111711
diff
changeset
|
198 (defun color-lab->srgb (L a b) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
199 "Converts CIE L*a*b* to RGB." |
111789
f97704487fb3
Merge changes made in Gnus trunk.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111732
diff
changeset
|
200 (apply 'color-xyz->srgb (color-lab->xyz L a b))) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
201 |
111711
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
202 (defun color-cie-de2000 (color1 color2 &optional kL kC kH) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
203 "Computes the CIEDE2000 color distance between COLOR1 and COLOR2. |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
204 Colors must be in CIE L*a*b* format." |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
205 (destructuring-bind (L₁ a₁ b₁) color1 |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
206 (destructuring-bind (L₂ a₂ b₂) color2 |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
207 (let* ((kL (or kL 1)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
208 (kC (or kC 1)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
209 (kH (or kH 1)) |
111701
3fbe2d0ad0f8
color-lab.el: Fix all expt calls to use float type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111695
diff
changeset
|
210 (C₁ (sqrt (+ (expt a₁ 2.0) (expt b₁ 2.0)))) |
3fbe2d0ad0f8
color-lab.el: Fix all expt calls to use float type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111695
diff
changeset
|
211 (C₂ (sqrt (+ (expt a₂ 2.0) (expt b₂ 2.0)))) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
212 (C̄ (/ (+ C₁ C₂) 2.0)) |
111701
3fbe2d0ad0f8
color-lab.el: Fix all expt calls to use float type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111695
diff
changeset
|
213 (G (* 0.5 (- 1 (sqrt (/ (expt C̄ 7.0) (+ (expt C̄ 7.0) (expt 25 7.0))))))) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
214 (a′₁ (* (+ 1 G) a₁)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
215 (a′₂ (* (+ 1 G) a₂)) |
111701
3fbe2d0ad0f8
color-lab.el: Fix all expt calls to use float type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111695
diff
changeset
|
216 (C′₁ (sqrt (+ (expt a′₁ 2.0) (expt b₁ 2.0)))) |
3fbe2d0ad0f8
color-lab.el: Fix all expt calls to use float type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111695
diff
changeset
|
217 (C′₂ (sqrt (+ (expt a′₂ 2.0) (expt b₂ 2.0)))) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
218 (h′₁ (if (and (= b₁ 0) (= a′₁ 0)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
219 0 |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
220 (let ((v (atan b₁ a′₁))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
221 (if (< v 0) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
222 (+ v (* 2 float-pi)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
223 v)))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
224 (h′₂ (if (and (= b₂ 0) (= a′₂ 0)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
225 0 |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
226 (let ((v (atan b₂ a′₂))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
227 (if (< v 0) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
228 (+ v (* 2 float-pi)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
229 v)))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
230 (ΔL′ (- L₂ L₁)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
231 (ΔC′ (- C′₂ C′₁)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
232 (Δh′ (cond ((= (* C′₁ C′₂) 0) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
233 0) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
234 ((<= (abs (- h′₂ h′₁)) float-pi) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
235 (- h′₂ h′₁)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
236 ((> (- h′₂ h′₁) float-pi) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
237 (- (- h′₂ h′₁) (* 2 float-pi))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
238 ((< (- h′₂ h′₁) (- float-pi)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
239 (+ (- h′₂ h′₁) (* 2 float-pi))))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
240 (ΔH′ (* 2 (sqrt (* C′₁ C′₂)) (sin (/ Δh′ 2.0)))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
241 (L̄′ (/ (+ L₁ L₂) 2.0)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
242 (C̄′ (/ (+ C′₁ C′₂) 2.0)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
243 (h̄′ (cond ((= (* C′₁ C′₂) 0) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
244 (+ h′₁ h′₂)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
245 ((<= (abs (- h′₁ h′₂)) float-pi) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
246 (/ (+ h′₁ h′₂) 2.0)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
247 ((< (+ h′₁ h′₂) (* 2 float-pi)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
248 (/ (+ h′₁ h′₂ (* 2 float-pi)) 2.0)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
249 ((>= (+ h′₁ h′₂) (* 2 float-pi)) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
250 (/ (+ h′₁ h′₂ (* -2 float-pi)) 2.0)))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
251 (T (+ 1 |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
252 (- (* 0.17 (cos (- h̄′ (degrees-to-radians 30))))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
253 (* 0.24 (cos (* h̄′ 2))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
254 (* 0.32 (cos (+ (* h̄′ 3) (degrees-to-radians 6)))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
255 (- (* 0.20 (cos (- (* h̄′ 4) (degrees-to-radians 63))))))) |
111701
3fbe2d0ad0f8
color-lab.el: Fix all expt calls to use float type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111695
diff
changeset
|
256 (Δθ (* (degrees-to-radians 30) (exp (- (expt (/ (- h̄′ (degrees-to-radians 275)) (degrees-to-radians 25)) 2.0))))) |
3fbe2d0ad0f8
color-lab.el: Fix all expt calls to use float type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111695
diff
changeset
|
257 (Rc (* 2 (sqrt (/ (expt C̄′ 7.0) (+ (expt C̄′ 7.0) (expt 25.0 7.0)))))) |
3fbe2d0ad0f8
color-lab.el: Fix all expt calls to use float type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111695
diff
changeset
|
258 (Sl (+ 1 (/ (* 0.015 (expt (- L̄′ 50) 2.0)) (sqrt (+ 20 (expt (- L̄′ 50) 2.0)))))) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
259 (Sc (+ 1 (* C̄′ 0.045))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
260 (Sh (+ 1 (* 0.015 C̄′ T))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
261 (Rt (- (* (sin (* Δθ 2)) Rc)))) |
111701
3fbe2d0ad0f8
color-lab.el: Fix all expt calls to use float type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111695
diff
changeset
|
262 (sqrt (+ (expt (/ ΔL′ (* Sl kL)) 2.0) |
3fbe2d0ad0f8
color-lab.el: Fix all expt calls to use float type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111695
diff
changeset
|
263 (expt (/ ΔC′ (* Sc kC)) 2.0) |
3fbe2d0ad0f8
color-lab.el: Fix all expt calls to use float type.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111695
diff
changeset
|
264 (expt (/ ΔH′ (* Sh kH)) 2.0) |
111678
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
265 (* Rt (/ ΔC′ (* Sc kC)) (/ ΔH′ (* Sh kH))))))))) |
3b6c0c4ef2bb
shr.el (shr-tag-color-check): Convert colors to hexadecimal with shr-color->hexadecimal.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
diff
changeset
|
266 |
111711
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
267 (provide 'color) |
111695
62d2be8b2bd2
color-lab.el: Add coding cookie.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111693
diff
changeset
|
268 |
111711
c4f2770ebd72
shr.el (shr-insert): Fix the way to fold lines.
Katsumi Yamaoka <yamaoka@jpl.org>
parents:
111702
diff
changeset
|
269 ;;; color.el ends here |