2010-11-25 14:51:51 +00:00
|
|
|
|
;;; color.el --- Color manipulation laboratory routines -*- coding: utf-8; -*-
|
2010-11-23 00:03:44 +00:00
|
|
|
|
|
2011-01-15 00:35:35 +00:00
|
|
|
|
;; Copyright (C) 2010, 2011 Free Software Foundation, Inc.
|
2010-11-23 00:03:44 +00:00
|
|
|
|
|
|
|
|
|
;; Author: Julien Danjou <julien@danjou.info>
|
|
|
|
|
;; Keywords: html
|
|
|
|
|
|
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
|
|
;; This package provides color manipulation functions.
|
|
|
|
|
|
|
|
|
|
;;; Code:
|
|
|
|
|
|
2010-11-24 12:56:50 +00:00
|
|
|
|
(eval-when-compile
|
|
|
|
|
(require 'cl))
|
|
|
|
|
|
2010-11-23 22:24:15 +00:00
|
|
|
|
;; Emacs < 23.3
|
2010-11-24 01:28:37 +00:00
|
|
|
|
(eval-and-compile
|
|
|
|
|
(unless (boundp 'float-pi)
|
|
|
|
|
(defconst float-pi (* 4 (atan 1)) "The value of Pi (3.1415926...).")))
|
2010-11-23 22:24:15 +00:00
|
|
|
|
|
2010-11-25 14:51:51 +00:00
|
|
|
|
(defun color-rgb->hex (red green blue)
|
|
|
|
|
"Return hexadecimal notation for RED GREEN BLUE color.
|
Merge changes made in Gnus trunk.
nnir.el: Batch header retrieval.
proto-stream.el: New library to provide protocol-specific TLS/STARTTLS connections for IMAP, NNTP, SMTP, POP3 and similar protocols.
nnimap.el (nnimap-open-connection): Use it.
proto-stream.el (open-proto-stream): Complete the documentation.
nnimap.el (nnimap-open-connection): Check for "OK" from the greeting.
nntp.el: Use proto-streams for the relevant connections types.
nntp.el (nntp-open-connection): Switch on STARTTLS on supported servers.
proto-stream.el (open-proto-stream): Add a way to specify what the end of a command is.
proto-stream.el (proto-stream-open-tls): Delete output from openssl if we're using tls.el.
proto-stream.el (proto-stream-open-network): If we don't have gnutls-cli or gnutls built in, then don't try to establish a STARTTLS connection.
color.el (color-lab->srgb): Fix function call name.
proto-stream.el: Fix the syntax in the comment.
nntp.el (nntp-open-connection): Fix the STARTTLS command syntax.
proto-stream.el (proto-stream-open-starttls): Actually implement the starttls.el STARTTLS.
proto-stream.el (proto-stream-always-use-starttls): New variable.
proto-stream.el (proto-stream-open-starttls): De-duplicate the starttls code.
proto-stream.el (proto-stream-open-starttls): Folded back into the main function.
proto-stream.el (proto-stream-command): Refactor out.
nnimap.el (nnimap-stream): Change default to `undecided'.
nnimap.el (nnimap-open-connection): If `nnimap-stream' is `undecided', try ssl first, and then network.
nnimap.el (nnimap-open-connection-1): Respect nnimap-server-port.
nnimap.el (nnimap-open-connection): Be more backwards-compatible.
proto-stream.el (open-protocol-stream): Renamed from open-proto-stream.
proto-stream.el (proto-stream-open-network): When doing opportunistic TLS upgrades we don't really care about the identity of the peer.
gnus.texi (Customizing the IMAP Connection): Note the new defaults.
gnus.texi (Direct Functions): Note the STARTTLS upgrade.
proto-stream.el (proto-stream-open-network): Force starttls.el to use gnutls-cli, since that what we've checked for.
proto-stream.el (proto-stream-always-use-starttls): Only default to t if open-gnutls-stream exists.
proto-stream.el (proto-stream-open-network): If STARTTLS failed, then just open a normal connection.
proto-stream.el (proto-stream-open-network): Wait until the greeting before doing STARTTLS.
nnimap.el (nnimap-open-connection-1): Always upgrade to STARTTLS (for backwards compatibility).
nnimap.el (nnimap-open-connection-1): Really respect nnimap-server-port.
nntp.el (nntp-open-connection): Provide a :success condition.
nnimap.el (nnimap-open-connection-1): Ditto.
proto-stream.el (proto-stream-open-network): See what the response to the STARTTLS command is.
proto-stream.el (proto-stream-open-network): Add some comments.
proto-stream.el: Fix example.
proto-stream.el (open-protocol-stream): Actually mention the STARTTLS upgrade.
nnir.el (nnir-get-active): Skip nnir-ignored-newsgroups when searching.
nnir.el (nnir-ignore-newsgroups): Fix default value.
nnir.el (nnir-run-gmane): Use mm-delete-duplicates instead of delete-dups that is not available in XEmacs 21.4.
mm-util.el (mm-delete-duplicates): Add comment.
gnus-sum.el (gnus-summary-delete-article): If delete fails don't change the registry.
nnimap.el (nnimap-open-connection-1): w32 open-network-stream doesn't seem to accept strings-with-numbers as port numbers.
color.el: fix docstring to use English rather than math notation for intervals.
shr.el (shr-find-fill-point): Don't break before apostrophes.
nnir.el (nnir-request-move-article): Bail out if no move support in group.
color.el (color-rgb->hsv): Fix docstring.
nnir.el (nnir-get-active): Improve active list retrieval.
shr.el (shr-find-fill-point): Work better for kinsoku chars and apostrophes.
gnus-gravatar.el (gnus-gravatar-size): Set gnus-gravatar-size to nil.
nnimap.el (nnimap-open-connection-1): Use gnus-string-match-p.
nnimap.el (nnimap-open-connection-1): Fix PREAUTH.
proto-stream.el (open-protocol-stream): All starttls connections are handled by the network handler.
gnus-gravatar.el (gnus-gravatar-insert): Delete unnecessary binding to t of inhibit-read-only since it is inside gnus-with-article-headers.
gnus-gravatar.el (gnus-gravatar-transform-address): Use mail-extract-address-components that supports non-ASCII names rather than mail-header-parse-addresses.
shr.el (shr-find-fill-point): Don't break line between kinsoku-bol characters.
gnus-gravatar.el (gnus-gravatar-insert): Allow LWSP in the middle of names.
nnmaildir.el (nnmaildir-request-set-mark): Add article to add-mark funcall.
gnus-msg.el: Remove nastygram thing.
message.el (message-from-style): Fix comment.
message.el (message-user-organization): Do not use gnus-local-organization.
gnus.el: Remove gnus-local-organization.
rtree.el: New file to handle range trees.
nnir.el, gnus-sum.el: Redo the way nnir handles registry updates.
rtree.el (rtree-extract): Simplify.
gnus-win.el (gnus-configure-windows): Remove Gnus 3.x setting support.
gnus-msg.el: Mark gnus-outgoing-message-group as obsolete.
gnus.texi (Archived Messages): Remove gnus-outgoing-message-group.
gnus-win.el (gnus-configure-frame): Remove old compatibility code.
rtree.el (rtree-memq): Rewrite it as a non-recursive function.
rtree.el (rtree-add, rtree-delq, rtree-length): Implement.
rtree.el (rtree-add): Make code slightly faster.
nnir.el: Allow modified summary-line-format in nnir summary buffers.
2010-12-02 22:21:31 +00:00
|
|
|
|
RED GREEN BLUE must be values between 0 and 1 inclusively."
|
2010-11-25 14:51:51 +00:00
|
|
|
|
(format "#%02x%02x%02x"
|
|
|
|
|
(* red 255) (* green 255) (* blue 255)))
|
|
|
|
|
|
|
|
|
|
(defun color-complement (color)
|
|
|
|
|
"Return the color that is the complement of COLOR."
|
|
|
|
|
(let ((color (color-rgb->normalize color)))
|
|
|
|
|
(list (- 1.0 (car color))
|
|
|
|
|
(- 1.0 (cadr color))
|
|
|
|
|
(- 1.0 (caddr color)))))
|
|
|
|
|
|
|
|
|
|
(defun color-complement-hex (color)
|
|
|
|
|
"Return the color that is the complement of COLOR, in hexadecimal format."
|
|
|
|
|
(apply 'color-rgb->hex (color-complement color)))
|
|
|
|
|
|
|
|
|
|
(defun color-rgb->hsv (red green blue)
|
2010-11-23 00:03:44 +00:00
|
|
|
|
"Convert RED GREEN BLUE values to HSV representation.
|
Merge changes made in Gnus trunk.
nnir.el: Batch header retrieval.
proto-stream.el: New library to provide protocol-specific TLS/STARTTLS connections for IMAP, NNTP, SMTP, POP3 and similar protocols.
nnimap.el (nnimap-open-connection): Use it.
proto-stream.el (open-proto-stream): Complete the documentation.
nnimap.el (nnimap-open-connection): Check for "OK" from the greeting.
nntp.el: Use proto-streams for the relevant connections types.
nntp.el (nntp-open-connection): Switch on STARTTLS on supported servers.
proto-stream.el (open-proto-stream): Add a way to specify what the end of a command is.
proto-stream.el (proto-stream-open-tls): Delete output from openssl if we're using tls.el.
proto-stream.el (proto-stream-open-network): If we don't have gnutls-cli or gnutls built in, then don't try to establish a STARTTLS connection.
color.el (color-lab->srgb): Fix function call name.
proto-stream.el: Fix the syntax in the comment.
nntp.el (nntp-open-connection): Fix the STARTTLS command syntax.
proto-stream.el (proto-stream-open-starttls): Actually implement the starttls.el STARTTLS.
proto-stream.el (proto-stream-always-use-starttls): New variable.
proto-stream.el (proto-stream-open-starttls): De-duplicate the starttls code.
proto-stream.el (proto-stream-open-starttls): Folded back into the main function.
proto-stream.el (proto-stream-command): Refactor out.
nnimap.el (nnimap-stream): Change default to `undecided'.
nnimap.el (nnimap-open-connection): If `nnimap-stream' is `undecided', try ssl first, and then network.
nnimap.el (nnimap-open-connection-1): Respect nnimap-server-port.
nnimap.el (nnimap-open-connection): Be more backwards-compatible.
proto-stream.el (open-protocol-stream): Renamed from open-proto-stream.
proto-stream.el (proto-stream-open-network): When doing opportunistic TLS upgrades we don't really care about the identity of the peer.
gnus.texi (Customizing the IMAP Connection): Note the new defaults.
gnus.texi (Direct Functions): Note the STARTTLS upgrade.
proto-stream.el (proto-stream-open-network): Force starttls.el to use gnutls-cli, since that what we've checked for.
proto-stream.el (proto-stream-always-use-starttls): Only default to t if open-gnutls-stream exists.
proto-stream.el (proto-stream-open-network): If STARTTLS failed, then just open a normal connection.
proto-stream.el (proto-stream-open-network): Wait until the greeting before doing STARTTLS.
nnimap.el (nnimap-open-connection-1): Always upgrade to STARTTLS (for backwards compatibility).
nnimap.el (nnimap-open-connection-1): Really respect nnimap-server-port.
nntp.el (nntp-open-connection): Provide a :success condition.
nnimap.el (nnimap-open-connection-1): Ditto.
proto-stream.el (proto-stream-open-network): See what the response to the STARTTLS command is.
proto-stream.el (proto-stream-open-network): Add some comments.
proto-stream.el: Fix example.
proto-stream.el (open-protocol-stream): Actually mention the STARTTLS upgrade.
nnir.el (nnir-get-active): Skip nnir-ignored-newsgroups when searching.
nnir.el (nnir-ignore-newsgroups): Fix default value.
nnir.el (nnir-run-gmane): Use mm-delete-duplicates instead of delete-dups that is not available in XEmacs 21.4.
mm-util.el (mm-delete-duplicates): Add comment.
gnus-sum.el (gnus-summary-delete-article): If delete fails don't change the registry.
nnimap.el (nnimap-open-connection-1): w32 open-network-stream doesn't seem to accept strings-with-numbers as port numbers.
color.el: fix docstring to use English rather than math notation for intervals.
shr.el (shr-find-fill-point): Don't break before apostrophes.
nnir.el (nnir-request-move-article): Bail out if no move support in group.
color.el (color-rgb->hsv): Fix docstring.
nnir.el (nnir-get-active): Improve active list retrieval.
shr.el (shr-find-fill-point): Work better for kinsoku chars and apostrophes.
gnus-gravatar.el (gnus-gravatar-size): Set gnus-gravatar-size to nil.
nnimap.el (nnimap-open-connection-1): Use gnus-string-match-p.
nnimap.el (nnimap-open-connection-1): Fix PREAUTH.
proto-stream.el (open-protocol-stream): All starttls connections are handled by the network handler.
gnus-gravatar.el (gnus-gravatar-insert): Delete unnecessary binding to t of inhibit-read-only since it is inside gnus-with-article-headers.
gnus-gravatar.el (gnus-gravatar-transform-address): Use mail-extract-address-components that supports non-ASCII names rather than mail-header-parse-addresses.
shr.el (shr-find-fill-point): Don't break line between kinsoku-bol characters.
gnus-gravatar.el (gnus-gravatar-insert): Allow LWSP in the middle of names.
nnmaildir.el (nnmaildir-request-set-mark): Add article to add-mark funcall.
gnus-msg.el: Remove nastygram thing.
message.el (message-from-style): Fix comment.
message.el (message-user-organization): Do not use gnus-local-organization.
gnus.el: Remove gnus-local-organization.
rtree.el: New file to handle range trees.
nnir.el, gnus-sum.el: Redo the way nnir handles registry updates.
rtree.el (rtree-extract): Simplify.
gnus-win.el (gnus-configure-windows): Remove Gnus 3.x setting support.
gnus-msg.el: Mark gnus-outgoing-message-group as obsolete.
gnus.texi (Archived Messages): Remove gnus-outgoing-message-group.
gnus-win.el (gnus-configure-frame): Remove old compatibility code.
rtree.el (rtree-memq): Rewrite it as a non-recursive function.
rtree.el (rtree-add, rtree-delq, rtree-length): Implement.
rtree.el (rtree-add): Make code slightly faster.
nnir.el: Allow modified summary-line-format in nnir summary buffers.
2010-12-02 22:21:31 +00:00
|
|
|
|
Hue is in radians. Saturation and values are between 0 and 1
|
|
|
|
|
inclusively."
|
2010-11-23 00:03:44 +00:00
|
|
|
|
(let* ((r (float red))
|
|
|
|
|
(g (float green))
|
|
|
|
|
(b (float blue))
|
|
|
|
|
(max (max r g b))
|
|
|
|
|
(min (min r g b)))
|
|
|
|
|
(list
|
|
|
|
|
(/ (* 2 float-pi
|
|
|
|
|
(cond ((and (= r g) (= g b)) 0)
|
|
|
|
|
((and (= r max)
|
|
|
|
|
(>= g b))
|
|
|
|
|
(* 60 (/ (- g b) (- max min))))
|
|
|
|
|
((and (= r max)
|
|
|
|
|
(< g b))
|
|
|
|
|
(+ 360 (* 60 (/ (- g b) (- max min)))))
|
|
|
|
|
((= max g)
|
|
|
|
|
(+ 120 (* 60 (/ (- b r) (- max min)))))
|
|
|
|
|
((= max b)
|
|
|
|
|
(+ 240 (* 60 (/ (- r g) (- max min)))))))
|
|
|
|
|
360)
|
|
|
|
|
(if (= max 0)
|
|
|
|
|
0
|
|
|
|
|
(- 1 (/ min max)))
|
|
|
|
|
(/ max 255.0))))
|
|
|
|
|
|
2010-11-25 14:51:51 +00:00
|
|
|
|
(defun color-rgb->hsl (red green blue)
|
2010-11-23 00:03:44 +00:00
|
|
|
|
"Convert RED GREEN BLUE colors to their HSL representation.
|
Merge changes made in Gnus trunk.
nnir.el: Batch header retrieval.
proto-stream.el: New library to provide protocol-specific TLS/STARTTLS connections for IMAP, NNTP, SMTP, POP3 and similar protocols.
nnimap.el (nnimap-open-connection): Use it.
proto-stream.el (open-proto-stream): Complete the documentation.
nnimap.el (nnimap-open-connection): Check for "OK" from the greeting.
nntp.el: Use proto-streams for the relevant connections types.
nntp.el (nntp-open-connection): Switch on STARTTLS on supported servers.
proto-stream.el (open-proto-stream): Add a way to specify what the end of a command is.
proto-stream.el (proto-stream-open-tls): Delete output from openssl if we're using tls.el.
proto-stream.el (proto-stream-open-network): If we don't have gnutls-cli or gnutls built in, then don't try to establish a STARTTLS connection.
color.el (color-lab->srgb): Fix function call name.
proto-stream.el: Fix the syntax in the comment.
nntp.el (nntp-open-connection): Fix the STARTTLS command syntax.
proto-stream.el (proto-stream-open-starttls): Actually implement the starttls.el STARTTLS.
proto-stream.el (proto-stream-always-use-starttls): New variable.
proto-stream.el (proto-stream-open-starttls): De-duplicate the starttls code.
proto-stream.el (proto-stream-open-starttls): Folded back into the main function.
proto-stream.el (proto-stream-command): Refactor out.
nnimap.el (nnimap-stream): Change default to `undecided'.
nnimap.el (nnimap-open-connection): If `nnimap-stream' is `undecided', try ssl first, and then network.
nnimap.el (nnimap-open-connection-1): Respect nnimap-server-port.
nnimap.el (nnimap-open-connection): Be more backwards-compatible.
proto-stream.el (open-protocol-stream): Renamed from open-proto-stream.
proto-stream.el (proto-stream-open-network): When doing opportunistic TLS upgrades we don't really care about the identity of the peer.
gnus.texi (Customizing the IMAP Connection): Note the new defaults.
gnus.texi (Direct Functions): Note the STARTTLS upgrade.
proto-stream.el (proto-stream-open-network): Force starttls.el to use gnutls-cli, since that what we've checked for.
proto-stream.el (proto-stream-always-use-starttls): Only default to t if open-gnutls-stream exists.
proto-stream.el (proto-stream-open-network): If STARTTLS failed, then just open a normal connection.
proto-stream.el (proto-stream-open-network): Wait until the greeting before doing STARTTLS.
nnimap.el (nnimap-open-connection-1): Always upgrade to STARTTLS (for backwards compatibility).
nnimap.el (nnimap-open-connection-1): Really respect nnimap-server-port.
nntp.el (nntp-open-connection): Provide a :success condition.
nnimap.el (nnimap-open-connection-1): Ditto.
proto-stream.el (proto-stream-open-network): See what the response to the STARTTLS command is.
proto-stream.el (proto-stream-open-network): Add some comments.
proto-stream.el: Fix example.
proto-stream.el (open-protocol-stream): Actually mention the STARTTLS upgrade.
nnir.el (nnir-get-active): Skip nnir-ignored-newsgroups when searching.
nnir.el (nnir-ignore-newsgroups): Fix default value.
nnir.el (nnir-run-gmane): Use mm-delete-duplicates instead of delete-dups that is not available in XEmacs 21.4.
mm-util.el (mm-delete-duplicates): Add comment.
gnus-sum.el (gnus-summary-delete-article): If delete fails don't change the registry.
nnimap.el (nnimap-open-connection-1): w32 open-network-stream doesn't seem to accept strings-with-numbers as port numbers.
color.el: fix docstring to use English rather than math notation for intervals.
shr.el (shr-find-fill-point): Don't break before apostrophes.
nnir.el (nnir-request-move-article): Bail out if no move support in group.
color.el (color-rgb->hsv): Fix docstring.
nnir.el (nnir-get-active): Improve active list retrieval.
shr.el (shr-find-fill-point): Work better for kinsoku chars and apostrophes.
gnus-gravatar.el (gnus-gravatar-size): Set gnus-gravatar-size to nil.
nnimap.el (nnimap-open-connection-1): Use gnus-string-match-p.
nnimap.el (nnimap-open-connection-1): Fix PREAUTH.
proto-stream.el (open-protocol-stream): All starttls connections are handled by the network handler.
gnus-gravatar.el (gnus-gravatar-insert): Delete unnecessary binding to t of inhibit-read-only since it is inside gnus-with-article-headers.
gnus-gravatar.el (gnus-gravatar-transform-address): Use mail-extract-address-components that supports non-ASCII names rather than mail-header-parse-addresses.
shr.el (shr-find-fill-point): Don't break line between kinsoku-bol characters.
gnus-gravatar.el (gnus-gravatar-insert): Allow LWSP in the middle of names.
nnmaildir.el (nnmaildir-request-set-mark): Add article to add-mark funcall.
gnus-msg.el: Remove nastygram thing.
message.el (message-from-style): Fix comment.
message.el (message-user-organization): Do not use gnus-local-organization.
gnus.el: Remove gnus-local-organization.
rtree.el: New file to handle range trees.
nnir.el, gnus-sum.el: Redo the way nnir handles registry updates.
rtree.el (rtree-extract): Simplify.
gnus-win.el (gnus-configure-windows): Remove Gnus 3.x setting support.
gnus-msg.el: Mark gnus-outgoing-message-group as obsolete.
gnus.texi (Archived Messages): Remove gnus-outgoing-message-group.
gnus-win.el (gnus-configure-frame): Remove old compatibility code.
rtree.el (rtree-memq): Rewrite it as a non-recursive function.
rtree.el (rtree-add, rtree-delq, rtree-length): Implement.
rtree.el (rtree-add): Make code slightly faster.
nnir.el: Allow modified summary-line-format in nnir summary buffers.
2010-12-02 22:21:31 +00:00
|
|
|
|
RED, GREEN and BLUE must be between 0 and 1 inclusively."
|
2010-11-25 14:51:51 +00:00
|
|
|
|
(let* ((r red)
|
|
|
|
|
(g green)
|
|
|
|
|
(b blue)
|
2010-11-23 00:03:44 +00:00
|
|
|
|
(max (max r g b))
|
|
|
|
|
(min (min r g b))
|
|
|
|
|
(delta (- max min))
|
|
|
|
|
(l (/ (+ max min) 2.0)))
|
|
|
|
|
(list
|
|
|
|
|
(if (= max min)
|
|
|
|
|
0
|
|
|
|
|
(* 2 float-pi
|
|
|
|
|
(/ (cond ((= max r)
|
|
|
|
|
(+ (/ (- g b) delta) (if (< g b) 6 0)))
|
|
|
|
|
((= max g)
|
|
|
|
|
(+ (/ (- b r) delta) 2))
|
|
|
|
|
(t
|
|
|
|
|
(+ (/ (- r g) delta) 4)))
|
|
|
|
|
6)))
|
|
|
|
|
(if (= max min)
|
|
|
|
|
0
|
|
|
|
|
(if (> l 0.5)
|
|
|
|
|
(/ delta (- 2 (+ max min)))
|
|
|
|
|
(/ delta (+ max min))))
|
|
|
|
|
l)))
|
|
|
|
|
|
2010-11-26 11:19:00 +00:00
|
|
|
|
(defun color-srgb->xyz (red green blue)
|
|
|
|
|
"Converts RED GREEN BLUE colors from the sRGB color space to CIE XYZ.
|
Merge changes made in Gnus trunk.
nnir.el: Batch header retrieval.
proto-stream.el: New library to provide protocol-specific TLS/STARTTLS connections for IMAP, NNTP, SMTP, POP3 and similar protocols.
nnimap.el (nnimap-open-connection): Use it.
proto-stream.el (open-proto-stream): Complete the documentation.
nnimap.el (nnimap-open-connection): Check for "OK" from the greeting.
nntp.el: Use proto-streams for the relevant connections types.
nntp.el (nntp-open-connection): Switch on STARTTLS on supported servers.
proto-stream.el (open-proto-stream): Add a way to specify what the end of a command is.
proto-stream.el (proto-stream-open-tls): Delete output from openssl if we're using tls.el.
proto-stream.el (proto-stream-open-network): If we don't have gnutls-cli or gnutls built in, then don't try to establish a STARTTLS connection.
color.el (color-lab->srgb): Fix function call name.
proto-stream.el: Fix the syntax in the comment.
nntp.el (nntp-open-connection): Fix the STARTTLS command syntax.
proto-stream.el (proto-stream-open-starttls): Actually implement the starttls.el STARTTLS.
proto-stream.el (proto-stream-always-use-starttls): New variable.
proto-stream.el (proto-stream-open-starttls): De-duplicate the starttls code.
proto-stream.el (proto-stream-open-starttls): Folded back into the main function.
proto-stream.el (proto-stream-command): Refactor out.
nnimap.el (nnimap-stream): Change default to `undecided'.
nnimap.el (nnimap-open-connection): If `nnimap-stream' is `undecided', try ssl first, and then network.
nnimap.el (nnimap-open-connection-1): Respect nnimap-server-port.
nnimap.el (nnimap-open-connection): Be more backwards-compatible.
proto-stream.el (open-protocol-stream): Renamed from open-proto-stream.
proto-stream.el (proto-stream-open-network): When doing opportunistic TLS upgrades we don't really care about the identity of the peer.
gnus.texi (Customizing the IMAP Connection): Note the new defaults.
gnus.texi (Direct Functions): Note the STARTTLS upgrade.
proto-stream.el (proto-stream-open-network): Force starttls.el to use gnutls-cli, since that what we've checked for.
proto-stream.el (proto-stream-always-use-starttls): Only default to t if open-gnutls-stream exists.
proto-stream.el (proto-stream-open-network): If STARTTLS failed, then just open a normal connection.
proto-stream.el (proto-stream-open-network): Wait until the greeting before doing STARTTLS.
nnimap.el (nnimap-open-connection-1): Always upgrade to STARTTLS (for backwards compatibility).
nnimap.el (nnimap-open-connection-1): Really respect nnimap-server-port.
nntp.el (nntp-open-connection): Provide a :success condition.
nnimap.el (nnimap-open-connection-1): Ditto.
proto-stream.el (proto-stream-open-network): See what the response to the STARTTLS command is.
proto-stream.el (proto-stream-open-network): Add some comments.
proto-stream.el: Fix example.
proto-stream.el (open-protocol-stream): Actually mention the STARTTLS upgrade.
nnir.el (nnir-get-active): Skip nnir-ignored-newsgroups when searching.
nnir.el (nnir-ignore-newsgroups): Fix default value.
nnir.el (nnir-run-gmane): Use mm-delete-duplicates instead of delete-dups that is not available in XEmacs 21.4.
mm-util.el (mm-delete-duplicates): Add comment.
gnus-sum.el (gnus-summary-delete-article): If delete fails don't change the registry.
nnimap.el (nnimap-open-connection-1): w32 open-network-stream doesn't seem to accept strings-with-numbers as port numbers.
color.el: fix docstring to use English rather than math notation for intervals.
shr.el (shr-find-fill-point): Don't break before apostrophes.
nnir.el (nnir-request-move-article): Bail out if no move support in group.
color.el (color-rgb->hsv): Fix docstring.
nnir.el (nnir-get-active): Improve active list retrieval.
shr.el (shr-find-fill-point): Work better for kinsoku chars and apostrophes.
gnus-gravatar.el (gnus-gravatar-size): Set gnus-gravatar-size to nil.
nnimap.el (nnimap-open-connection-1): Use gnus-string-match-p.
nnimap.el (nnimap-open-connection-1): Fix PREAUTH.
proto-stream.el (open-protocol-stream): All starttls connections are handled by the network handler.
gnus-gravatar.el (gnus-gravatar-insert): Delete unnecessary binding to t of inhibit-read-only since it is inside gnus-with-article-headers.
gnus-gravatar.el (gnus-gravatar-transform-address): Use mail-extract-address-components that supports non-ASCII names rather than mail-header-parse-addresses.
shr.el (shr-find-fill-point): Don't break line between kinsoku-bol characters.
gnus-gravatar.el (gnus-gravatar-insert): Allow LWSP in the middle of names.
nnmaildir.el (nnmaildir-request-set-mark): Add article to add-mark funcall.
gnus-msg.el: Remove nastygram thing.
message.el (message-from-style): Fix comment.
message.el (message-user-organization): Do not use gnus-local-organization.
gnus.el: Remove gnus-local-organization.
rtree.el: New file to handle range trees.
nnir.el, gnus-sum.el: Redo the way nnir handles registry updates.
rtree.el (rtree-extract): Simplify.
gnus-win.el (gnus-configure-windows): Remove Gnus 3.x setting support.
gnus-msg.el: Mark gnus-outgoing-message-group as obsolete.
gnus.texi (Archived Messages): Remove gnus-outgoing-message-group.
gnus-win.el (gnus-configure-frame): Remove old compatibility code.
rtree.el (rtree-memq): Rewrite it as a non-recursive function.
rtree.el (rtree-add, rtree-delq, rtree-length): Implement.
rtree.el (rtree-add): Make code slightly faster.
nnir.el: Allow modified summary-line-format in nnir summary buffers.
2010-12-02 22:21:31 +00:00
|
|
|
|
RED, BLUE and GREEN must be between 0 and 1 inclusively."
|
2010-11-23 00:03:44 +00:00
|
|
|
|
(let ((r (if (<= red 0.04045)
|
|
|
|
|
(/ red 12.95)
|
|
|
|
|
(expt (/ (+ red 0.055) 1.055) 2.4)))
|
|
|
|
|
(g (if (<= green 0.04045)
|
|
|
|
|
(/ green 12.95)
|
|
|
|
|
(expt (/ (+ green 0.055) 1.055) 2.4)))
|
|
|
|
|
(b (if (<= blue 0.04045)
|
|
|
|
|
(/ blue 12.95)
|
|
|
|
|
(expt (/ (+ blue 0.055) 1.055) 2.4))))
|
|
|
|
|
(list (+ (* 0.4124564 r) (* 0.3575761 g) (* 0.1804375 b))
|
|
|
|
|
(+ (* 0.21266729 r) (* 0.7151522 g) (* 0.0721750 b))
|
|
|
|
|
(+ (* 0.0193339 r) (* 0.1191920 g) (* 0.9503041 b)))))
|
|
|
|
|
|
2010-11-26 11:19:00 +00:00
|
|
|
|
(defun color-xyz->srgb (X Y Z)
|
|
|
|
|
"Converts CIE X Y Z colors to sRGB color space."
|
2010-11-23 00:03:44 +00:00
|
|
|
|
(let ((r (+ (* 3.2404542 X) (* -1.5371385 Y) (* -0.4985314 Z)))
|
|
|
|
|
(g (+ (* -0.9692660 X) (* 1.8760108 Y) (* 0.0415560 Z)))
|
|
|
|
|
(b (+ (* 0.0556434 X) (* -0.2040259 Y) (* 1.0572252 Z))))
|
|
|
|
|
(list (if (<= r 0.0031308)
|
|
|
|
|
(* 12.92 r)
|
|
|
|
|
(- (* 1.055 (expt r (/ 1 2.4))) 0.055))
|
|
|
|
|
(if (<= g 0.0031308)
|
|
|
|
|
(* 12.92 g)
|
|
|
|
|
(- (* 1.055 (expt g (/ 1 2.4))) 0.055))
|
|
|
|
|
(if (<= b 0.0031308)
|
|
|
|
|
(* 12.92 b)
|
|
|
|
|
(- (* 1.055 (expt b (/ 1 2.4))) 0.055)))))
|
|
|
|
|
|
2010-11-25 14:51:51 +00:00
|
|
|
|
(defconst color-d65-xyz '(0.950455 1.0 1.088753)
|
2010-11-23 00:03:44 +00:00
|
|
|
|
"D65 white point in CIE XYZ.")
|
|
|
|
|
|
2010-11-25 14:51:51 +00:00
|
|
|
|
(defconst color-cie-ε (/ 216 24389.0))
|
|
|
|
|
(defconst color-cie-κ (/ 24389 27.0))
|
2010-11-23 00:03:44 +00:00
|
|
|
|
|
2010-11-25 14:51:51 +00:00
|
|
|
|
(defun color-xyz->lab (X Y Z &optional white-point)
|
2010-11-23 00:03:44 +00:00
|
|
|
|
"Converts CIE XYZ to CIE L*a*b*.
|
|
|
|
|
WHITE-POINT can be specified as (X Y Z) white point to use. If
|
2010-11-25 14:51:51 +00:00
|
|
|
|
none is set, `color-d65-xyz' is used."
|
|
|
|
|
(destructuring-bind (Xr Yr Zr) (or white-point color-d65-xyz)
|
2010-11-23 00:03:44 +00:00
|
|
|
|
(let* ((xr (/ X Xr))
|
|
|
|
|
(yr (/ Y Yr))
|
|
|
|
|
(zr (/ Z Zr))
|
2010-11-25 14:51:51 +00:00
|
|
|
|
(fx (if (> xr color-cie-ε)
|
2010-11-23 00:03:44 +00:00
|
|
|
|
(expt xr (/ 1 3.0))
|
2010-11-25 14:51:51 +00:00
|
|
|
|
(/ (+ (* color-cie-κ xr) 16) 116.0)))
|
|
|
|
|
(fy (if (> yr color-cie-ε)
|
2010-11-23 00:03:44 +00:00
|
|
|
|
(expt yr (/ 1 3.0))
|
2010-11-25 14:51:51 +00:00
|
|
|
|
(/ (+ (* color-cie-κ yr) 16) 116.0)))
|
|
|
|
|
(fz (if (> zr color-cie-ε)
|
2010-11-23 00:03:44 +00:00
|
|
|
|
(expt zr (/ 1 3.0))
|
2010-11-25 14:51:51 +00:00
|
|
|
|
(/ (+ (* color-cie-κ zr) 16) 116.0))))
|
2010-11-23 00:03:44 +00:00
|
|
|
|
(list
|
|
|
|
|
(- (* 116 fy) 16) ; L
|
|
|
|
|
(* 500 (- fx fy)) ; a
|
|
|
|
|
(* 200 (- fy fz)))))) ; b
|
|
|
|
|
|
2010-11-25 14:51:51 +00:00
|
|
|
|
(defun color-lab->xyz (L a b &optional white-point)
|
2010-11-23 00:03:44 +00:00
|
|
|
|
"Converts CIE L*a*b* to CIE XYZ.
|
|
|
|
|
WHITE-POINT can be specified as (X Y Z) white point to use. If
|
2010-11-25 14:51:51 +00:00
|
|
|
|
none is set, `color-d65-xyz' is used."
|
|
|
|
|
(destructuring-bind (Xr Yr Zr) (or white-point color-d65-xyz)
|
2010-11-23 00:03:44 +00:00
|
|
|
|
(let* ((fy (/ (+ L 16) 116.0))
|
|
|
|
|
(fz (- fy (/ b 200.0)))
|
|
|
|
|
(fx (+ (/ a 500.0) fy))
|
2010-11-25 14:51:51 +00:00
|
|
|
|
(xr (if (> (expt fx 3.0) color-cie-ε)
|
2010-11-24 11:32:22 +00:00
|
|
|
|
(expt fx 3.0)
|
2010-11-25 14:51:51 +00:00
|
|
|
|
(/ (- (* fx 116) 16) color-cie-κ)))
|
|
|
|
|
(yr (if (> L (* color-cie-κ color-cie-ε))
|
2010-11-24 11:32:22 +00:00
|
|
|
|
(expt (/ (+ L 16) 116.0) 3.0)
|
2010-11-25 14:51:51 +00:00
|
|
|
|
(/ L color-cie-κ)))
|
|
|
|
|
(zr (if (> (expt fz 3) color-cie-ε)
|
2010-11-24 11:32:22 +00:00
|
|
|
|
(expt fz 3.0)
|
2010-11-25 14:51:51 +00:00
|
|
|
|
(/ (- (* 116 fz) 16) color-cie-κ))))
|
2010-11-23 00:03:44 +00:00
|
|
|
|
(list (* xr Xr) ; X
|
|
|
|
|
(* yr Yr) ; Y
|
|
|
|
|
(* zr Zr))))) ; Z
|
|
|
|
|
|
2010-11-26 11:19:00 +00:00
|
|
|
|
(defun color-srgb->lab (red green blue)
|
2010-11-23 00:03:44 +00:00
|
|
|
|
"Converts RGB to CIE L*a*b*."
|
2010-11-26 11:19:00 +00:00
|
|
|
|
(apply 'color-xyz->lab (color-srgb->xyz red green blue)))
|
2010-11-23 00:03:44 +00:00
|
|
|
|
|
2010-11-25 14:51:51 +00:00
|
|
|
|
(defun color-rgb->normalize (color)
|
Merge changes made in Gnus trunk.
nnir.el: Batch header retrieval.
proto-stream.el: New library to provide protocol-specific TLS/STARTTLS connections for IMAP, NNTP, SMTP, POP3 and similar protocols.
nnimap.el (nnimap-open-connection): Use it.
proto-stream.el (open-proto-stream): Complete the documentation.
nnimap.el (nnimap-open-connection): Check for "OK" from the greeting.
nntp.el: Use proto-streams for the relevant connections types.
nntp.el (nntp-open-connection): Switch on STARTTLS on supported servers.
proto-stream.el (open-proto-stream): Add a way to specify what the end of a command is.
proto-stream.el (proto-stream-open-tls): Delete output from openssl if we're using tls.el.
proto-stream.el (proto-stream-open-network): If we don't have gnutls-cli or gnutls built in, then don't try to establish a STARTTLS connection.
color.el (color-lab->srgb): Fix function call name.
proto-stream.el: Fix the syntax in the comment.
nntp.el (nntp-open-connection): Fix the STARTTLS command syntax.
proto-stream.el (proto-stream-open-starttls): Actually implement the starttls.el STARTTLS.
proto-stream.el (proto-stream-always-use-starttls): New variable.
proto-stream.el (proto-stream-open-starttls): De-duplicate the starttls code.
proto-stream.el (proto-stream-open-starttls): Folded back into the main function.
proto-stream.el (proto-stream-command): Refactor out.
nnimap.el (nnimap-stream): Change default to `undecided'.
nnimap.el (nnimap-open-connection): If `nnimap-stream' is `undecided', try ssl first, and then network.
nnimap.el (nnimap-open-connection-1): Respect nnimap-server-port.
nnimap.el (nnimap-open-connection): Be more backwards-compatible.
proto-stream.el (open-protocol-stream): Renamed from open-proto-stream.
proto-stream.el (proto-stream-open-network): When doing opportunistic TLS upgrades we don't really care about the identity of the peer.
gnus.texi (Customizing the IMAP Connection): Note the new defaults.
gnus.texi (Direct Functions): Note the STARTTLS upgrade.
proto-stream.el (proto-stream-open-network): Force starttls.el to use gnutls-cli, since that what we've checked for.
proto-stream.el (proto-stream-always-use-starttls): Only default to t if open-gnutls-stream exists.
proto-stream.el (proto-stream-open-network): If STARTTLS failed, then just open a normal connection.
proto-stream.el (proto-stream-open-network): Wait until the greeting before doing STARTTLS.
nnimap.el (nnimap-open-connection-1): Always upgrade to STARTTLS (for backwards compatibility).
nnimap.el (nnimap-open-connection-1): Really respect nnimap-server-port.
nntp.el (nntp-open-connection): Provide a :success condition.
nnimap.el (nnimap-open-connection-1): Ditto.
proto-stream.el (proto-stream-open-network): See what the response to the STARTTLS command is.
proto-stream.el (proto-stream-open-network): Add some comments.
proto-stream.el: Fix example.
proto-stream.el (open-protocol-stream): Actually mention the STARTTLS upgrade.
nnir.el (nnir-get-active): Skip nnir-ignored-newsgroups when searching.
nnir.el (nnir-ignore-newsgroups): Fix default value.
nnir.el (nnir-run-gmane): Use mm-delete-duplicates instead of delete-dups that is not available in XEmacs 21.4.
mm-util.el (mm-delete-duplicates): Add comment.
gnus-sum.el (gnus-summary-delete-article): If delete fails don't change the registry.
nnimap.el (nnimap-open-connection-1): w32 open-network-stream doesn't seem to accept strings-with-numbers as port numbers.
color.el: fix docstring to use English rather than math notation for intervals.
shr.el (shr-find-fill-point): Don't break before apostrophes.
nnir.el (nnir-request-move-article): Bail out if no move support in group.
color.el (color-rgb->hsv): Fix docstring.
nnir.el (nnir-get-active): Improve active list retrieval.
shr.el (shr-find-fill-point): Work better for kinsoku chars and apostrophes.
gnus-gravatar.el (gnus-gravatar-size): Set gnus-gravatar-size to nil.
nnimap.el (nnimap-open-connection-1): Use gnus-string-match-p.
nnimap.el (nnimap-open-connection-1): Fix PREAUTH.
proto-stream.el (open-protocol-stream): All starttls connections are handled by the network handler.
gnus-gravatar.el (gnus-gravatar-insert): Delete unnecessary binding to t of inhibit-read-only since it is inside gnus-with-article-headers.
gnus-gravatar.el (gnus-gravatar-transform-address): Use mail-extract-address-components that supports non-ASCII names rather than mail-header-parse-addresses.
shr.el (shr-find-fill-point): Don't break line between kinsoku-bol characters.
gnus-gravatar.el (gnus-gravatar-insert): Allow LWSP in the middle of names.
nnmaildir.el (nnmaildir-request-set-mark): Add article to add-mark funcall.
gnus-msg.el: Remove nastygram thing.
message.el (message-from-style): Fix comment.
message.el (message-user-organization): Do not use gnus-local-organization.
gnus.el: Remove gnus-local-organization.
rtree.el: New file to handle range trees.
nnir.el, gnus-sum.el: Redo the way nnir handles registry updates.
rtree.el (rtree-extract): Simplify.
gnus-win.el (gnus-configure-windows): Remove Gnus 3.x setting support.
gnus-msg.el: Mark gnus-outgoing-message-group as obsolete.
gnus.texi (Archived Messages): Remove gnus-outgoing-message-group.
gnus-win.el (gnus-configure-frame): Remove old compatibility code.
rtree.el (rtree-memq): Rewrite it as a non-recursive function.
rtree.el (rtree-add, rtree-delq, rtree-length): Implement.
rtree.el (rtree-add): Make code slightly faster.
nnir.el: Allow modified summary-line-format in nnir summary buffers.
2010-12-02 22:21:31 +00:00
|
|
|
|
"Normalize a RGB color to values between 0 and 1 inclusively."
|
2010-11-23 00:03:44 +00:00
|
|
|
|
(mapcar (lambda (x) (/ x 65535.0)) (x-color-values color)))
|
|
|
|
|
|
2010-11-26 11:19:00 +00:00
|
|
|
|
(defun color-lab->srgb (L a b)
|
2010-11-23 00:03:44 +00:00
|
|
|
|
"Converts CIE L*a*b* to RGB."
|
Merge changes made in Gnus trunk.
nnir.el: Batch header retrieval.
proto-stream.el: New library to provide protocol-specific TLS/STARTTLS connections for IMAP, NNTP, SMTP, POP3 and similar protocols.
nnimap.el (nnimap-open-connection): Use it.
proto-stream.el (open-proto-stream): Complete the documentation.
nnimap.el (nnimap-open-connection): Check for "OK" from the greeting.
nntp.el: Use proto-streams for the relevant connections types.
nntp.el (nntp-open-connection): Switch on STARTTLS on supported servers.
proto-stream.el (open-proto-stream): Add a way to specify what the end of a command is.
proto-stream.el (proto-stream-open-tls): Delete output from openssl if we're using tls.el.
proto-stream.el (proto-stream-open-network): If we don't have gnutls-cli or gnutls built in, then don't try to establish a STARTTLS connection.
color.el (color-lab->srgb): Fix function call name.
proto-stream.el: Fix the syntax in the comment.
nntp.el (nntp-open-connection): Fix the STARTTLS command syntax.
proto-stream.el (proto-stream-open-starttls): Actually implement the starttls.el STARTTLS.
proto-stream.el (proto-stream-always-use-starttls): New variable.
proto-stream.el (proto-stream-open-starttls): De-duplicate the starttls code.
proto-stream.el (proto-stream-open-starttls): Folded back into the main function.
proto-stream.el (proto-stream-command): Refactor out.
nnimap.el (nnimap-stream): Change default to `undecided'.
nnimap.el (nnimap-open-connection): If `nnimap-stream' is `undecided', try ssl first, and then network.
nnimap.el (nnimap-open-connection-1): Respect nnimap-server-port.
nnimap.el (nnimap-open-connection): Be more backwards-compatible.
proto-stream.el (open-protocol-stream): Renamed from open-proto-stream.
proto-stream.el (proto-stream-open-network): When doing opportunistic TLS upgrades we don't really care about the identity of the peer.
gnus.texi (Customizing the IMAP Connection): Note the new defaults.
gnus.texi (Direct Functions): Note the STARTTLS upgrade.
proto-stream.el (proto-stream-open-network): Force starttls.el to use gnutls-cli, since that what we've checked for.
proto-stream.el (proto-stream-always-use-starttls): Only default to t if open-gnutls-stream exists.
proto-stream.el (proto-stream-open-network): If STARTTLS failed, then just open a normal connection.
proto-stream.el (proto-stream-open-network): Wait until the greeting before doing STARTTLS.
nnimap.el (nnimap-open-connection-1): Always upgrade to STARTTLS (for backwards compatibility).
nnimap.el (nnimap-open-connection-1): Really respect nnimap-server-port.
nntp.el (nntp-open-connection): Provide a :success condition.
nnimap.el (nnimap-open-connection-1): Ditto.
proto-stream.el (proto-stream-open-network): See what the response to the STARTTLS command is.
proto-stream.el (proto-stream-open-network): Add some comments.
proto-stream.el: Fix example.
proto-stream.el (open-protocol-stream): Actually mention the STARTTLS upgrade.
nnir.el (nnir-get-active): Skip nnir-ignored-newsgroups when searching.
nnir.el (nnir-ignore-newsgroups): Fix default value.
nnir.el (nnir-run-gmane): Use mm-delete-duplicates instead of delete-dups that is not available in XEmacs 21.4.
mm-util.el (mm-delete-duplicates): Add comment.
gnus-sum.el (gnus-summary-delete-article): If delete fails don't change the registry.
nnimap.el (nnimap-open-connection-1): w32 open-network-stream doesn't seem to accept strings-with-numbers as port numbers.
color.el: fix docstring to use English rather than math notation for intervals.
shr.el (shr-find-fill-point): Don't break before apostrophes.
nnir.el (nnir-request-move-article): Bail out if no move support in group.
color.el (color-rgb->hsv): Fix docstring.
nnir.el (nnir-get-active): Improve active list retrieval.
shr.el (shr-find-fill-point): Work better for kinsoku chars and apostrophes.
gnus-gravatar.el (gnus-gravatar-size): Set gnus-gravatar-size to nil.
nnimap.el (nnimap-open-connection-1): Use gnus-string-match-p.
nnimap.el (nnimap-open-connection-1): Fix PREAUTH.
proto-stream.el (open-protocol-stream): All starttls connections are handled by the network handler.
gnus-gravatar.el (gnus-gravatar-insert): Delete unnecessary binding to t of inhibit-read-only since it is inside gnus-with-article-headers.
gnus-gravatar.el (gnus-gravatar-transform-address): Use mail-extract-address-components that supports non-ASCII names rather than mail-header-parse-addresses.
shr.el (shr-find-fill-point): Don't break line between kinsoku-bol characters.
gnus-gravatar.el (gnus-gravatar-insert): Allow LWSP in the middle of names.
nnmaildir.el (nnmaildir-request-set-mark): Add article to add-mark funcall.
gnus-msg.el: Remove nastygram thing.
message.el (message-from-style): Fix comment.
message.el (message-user-organization): Do not use gnus-local-organization.
gnus.el: Remove gnus-local-organization.
rtree.el: New file to handle range trees.
nnir.el, gnus-sum.el: Redo the way nnir handles registry updates.
rtree.el (rtree-extract): Simplify.
gnus-win.el (gnus-configure-windows): Remove Gnus 3.x setting support.
gnus-msg.el: Mark gnus-outgoing-message-group as obsolete.
gnus.texi (Archived Messages): Remove gnus-outgoing-message-group.
gnus-win.el (gnus-configure-frame): Remove old compatibility code.
rtree.el (rtree-memq): Rewrite it as a non-recursive function.
rtree.el (rtree-add, rtree-delq, rtree-length): Implement.
rtree.el (rtree-add): Make code slightly faster.
nnir.el: Allow modified summary-line-format in nnir summary buffers.
2010-12-02 22:21:31 +00:00
|
|
|
|
(apply 'color-xyz->srgb (color-lab->xyz L a b)))
|
2010-11-23 00:03:44 +00:00
|
|
|
|
|
2010-11-25 14:51:51 +00:00
|
|
|
|
(defun color-cie-de2000 (color1 color2 &optional kL kC kH)
|
2010-11-23 00:03:44 +00:00
|
|
|
|
"Computes the CIEDE2000 color distance between COLOR1 and COLOR2.
|
|
|
|
|
Colors must be in CIE L*a*b* format."
|
|
|
|
|
(destructuring-bind (L₁ a₁ b₁) color1
|
|
|
|
|
(destructuring-bind (L₂ a₂ b₂) color2
|
|
|
|
|
(let* ((kL (or kL 1))
|
|
|
|
|
(kC (or kC 1))
|
|
|
|
|
(kH (or kH 1))
|
2010-11-24 11:32:22 +00:00
|
|
|
|
(C₁ (sqrt (+ (expt a₁ 2.0) (expt b₁ 2.0))))
|
|
|
|
|
(C₂ (sqrt (+ (expt a₂ 2.0) (expt b₂ 2.0))))
|
2010-11-23 00:03:44 +00:00
|
|
|
|
(C̄ (/ (+ C₁ C₂) 2.0))
|
2010-11-24 11:32:22 +00:00
|
|
|
|
(G (* 0.5 (- 1 (sqrt (/ (expt C̄ 7.0) (+ (expt C̄ 7.0) (expt 25 7.0)))))))
|
2010-11-23 00:03:44 +00:00
|
|
|
|
(a′₁ (* (+ 1 G) a₁))
|
|
|
|
|
(a′₂ (* (+ 1 G) a₂))
|
2010-11-24 11:32:22 +00:00
|
|
|
|
(C′₁ (sqrt (+ (expt a′₁ 2.0) (expt b₁ 2.0))))
|
|
|
|
|
(C′₂ (sqrt (+ (expt a′₂ 2.0) (expt b₂ 2.0))))
|
2010-11-23 00:03:44 +00:00
|
|
|
|
(h′₁ (if (and (= b₁ 0) (= a′₁ 0))
|
|
|
|
|
0
|
|
|
|
|
(let ((v (atan b₁ a′₁)))
|
|
|
|
|
(if (< v 0)
|
|
|
|
|
(+ v (* 2 float-pi))
|
|
|
|
|
v))))
|
|
|
|
|
(h′₂ (if (and (= b₂ 0) (= a′₂ 0))
|
|
|
|
|
0
|
|
|
|
|
(let ((v (atan b₂ a′₂)))
|
|
|
|
|
(if (< v 0)
|
|
|
|
|
(+ v (* 2 float-pi))
|
|
|
|
|
v))))
|
|
|
|
|
(ΔL′ (- L₂ L₁))
|
|
|
|
|
(ΔC′ (- C′₂ C′₁))
|
|
|
|
|
(Δh′ (cond ((= (* C′₁ C′₂) 0)
|
|
|
|
|
0)
|
|
|
|
|
((<= (abs (- h′₂ h′₁)) float-pi)
|
|
|
|
|
(- h′₂ h′₁))
|
|
|
|
|
((> (- h′₂ h′₁) float-pi)
|
|
|
|
|
(- (- h′₂ h′₁) (* 2 float-pi)))
|
|
|
|
|
((< (- h′₂ h′₁) (- float-pi))
|
|
|
|
|
(+ (- h′₂ h′₁) (* 2 float-pi)))))
|
|
|
|
|
(ΔH′ (* 2 (sqrt (* C′₁ C′₂)) (sin (/ Δh′ 2.0))))
|
|
|
|
|
(L̄′ (/ (+ L₁ L₂) 2.0))
|
|
|
|
|
(C̄′ (/ (+ C′₁ C′₂) 2.0))
|
|
|
|
|
(h̄′ (cond ((= (* C′₁ C′₂) 0)
|
|
|
|
|
(+ h′₁ h′₂))
|
|
|
|
|
((<= (abs (- h′₁ h′₂)) float-pi)
|
|
|
|
|
(/ (+ h′₁ h′₂) 2.0))
|
|
|
|
|
((< (+ h′₁ h′₂) (* 2 float-pi))
|
|
|
|
|
(/ (+ h′₁ h′₂ (* 2 float-pi)) 2.0))
|
|
|
|
|
((>= (+ h′₁ h′₂) (* 2 float-pi))
|
|
|
|
|
(/ (+ h′₁ h′₂ (* -2 float-pi)) 2.0))))
|
|
|
|
|
(T (+ 1
|
|
|
|
|
(- (* 0.17 (cos (- h̄′ (degrees-to-radians 30)))))
|
|
|
|
|
(* 0.24 (cos (* h̄′ 2)))
|
|
|
|
|
(* 0.32 (cos (+ (* h̄′ 3) (degrees-to-radians 6))))
|
|
|
|
|
(- (* 0.20 (cos (- (* h̄′ 4) (degrees-to-radians 63)))))))
|
2010-11-24 11:32:22 +00:00
|
|
|
|
(Δθ (* (degrees-to-radians 30) (exp (- (expt (/ (- h̄′ (degrees-to-radians 275)) (degrees-to-radians 25)) 2.0)))))
|
|
|
|
|
(Rc (* 2 (sqrt (/ (expt C̄′ 7.0) (+ (expt C̄′ 7.0) (expt 25.0 7.0))))))
|
|
|
|
|
(Sl (+ 1 (/ (* 0.015 (expt (- L̄′ 50) 2.0)) (sqrt (+ 20 (expt (- L̄′ 50) 2.0))))))
|
2010-11-23 00:03:44 +00:00
|
|
|
|
(Sc (+ 1 (* C̄′ 0.045)))
|
|
|
|
|
(Sh (+ 1 (* 0.015 C̄′ T)))
|
|
|
|
|
(Rt (- (* (sin (* Δθ 2)) Rc))))
|
2010-11-24 11:32:22 +00:00
|
|
|
|
(sqrt (+ (expt (/ ΔL′ (* Sl kL)) 2.0)
|
|
|
|
|
(expt (/ ΔC′ (* Sc kC)) 2.0)
|
|
|
|
|
(expt (/ ΔH′ (* Sh kH)) 2.0)
|
2010-11-23 00:03:44 +00:00
|
|
|
|
(* Rt (/ ΔC′ (* Sc kC)) (/ ΔH′ (* Sh kH)))))))))
|
|
|
|
|
|
2010-11-25 14:51:51 +00:00
|
|
|
|
(provide 'color)
|
2010-11-24 01:28:37 +00:00
|
|
|
|
|
2010-11-25 14:51:51 +00:00
|
|
|
|
;;; color.el ends here
|