Benedikt Ritter created IMAGING-148:
---------------------------------------
Summary: Add methods for deriving colors from another
Key: IMAGING-148
URL: https://issues.apache.org/jira/browse/IMAGING-148
Project: Commons Imaging
Issue Type: Improvement
Reporter: Benedikt Ritter
Fix For: Patch Needed
Sehr should be methods for creating a new color based on an existing instance
but with one component changed.
Example:
{code:java}
ColorCmyk cyan = new ColorCymk(100, 0, 0, 0);
ColorCmyk lime = cyan.withYellow(100);
assertEquals(lime.C, 100);
assertEquals(lime.Y, 100);
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)