[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Groff] CMYK <-> RGB
From: |
Ralph Corderoy |
Subject: |
Re: [Groff] CMYK <-> RGB |
Date: |
Fri, 05 Oct 2001 11:17:46 +0100 |
Hi Werner,
> Which one is the `best' or the `correct' one?
To answer a separate question :-) Foley, van Dam, et al's _Computer
Graphics, Principles and Practice_ says that CMY shares the same
Cartesian coordinate space as RGB and since they're the complement of
each other converting from CMY to RGB is straightforward.
R 1 C
G = 1 - M
B 1 Y
Turning CMY into CMYK is similarly simple.
K = min(C, M, Y)
C = C - K
M = M - K
Y = Y - K
Hope this is of some help.
Ralph.
- [Groff] CMYK <-> RGB, Werner LEMBERG, 2001/10/05
- [Groff] Re: CMYK <-> RGB, Keith Packard, 2001/10/05
- Re: [Groff] Re: CMYK <-> RGB, Ralph Corderoy, 2001/10/05
- Re: [Groff] Re: CMYK <-> RGB, Tadziu Hoffmann, 2001/10/05
- Re: [Groff] Re: CMYK <-> RGB, Keith Packard, 2001/10/05
- Re: [Groff] Re: CMYK <-> RGB, Larry Jones, 2001/10/05
- Re: [Groff] Re: CMYK <-> RGB, Ralph Corderoy, 2001/10/05
- Re: [Groff] Re: CMYK <-> RGB, Larry Jones, 2001/10/05
- Re: [Groff] Re: CMYK <-> RGB, Larry Jones, 2001/10/05
- [Groff] Re: CMYK <-> RGB, Werner LEMBERG, 2001/10/05
Re: [Groff] CMYK <-> RGB,
Ralph Corderoy <=