aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/awt/color/ICC_ColorSpace.java
blob: 90ff88c8bdcc07486cd3ae899e9e29a02acb4a8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/* Copyright © 2000  Free Software Foundation

   This file is part of libgcj.

This software is copyrighted work licensed under the terms of the
Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
details.  */

package java.awt.color;

/**
 * @author Rolf W. Rasmussen <rolfwr@ii.uib.no>
 */
public class ICC_ColorSpace extends ColorSpace
{
  private ICC_Profile profile;

  public ICC_ColorSpace(ICC_Profile profile)
  {
    super(CS_sRGB, profile.getNumComponents());
    
    this.profile = profile;
  }

  public ICC_Profile getProfile()
  {
    return profile;
  }

  public float[] toRGB(float[] colorvalue)
  {
    // FIXME: Always assumes sRGB:
    return colorvalue;
  }

  public float[] fromRGB(float[] rgbvalue)
  {
    // FIXME: Always assumes sRGB:
    return rgbvalue;
  }

  public float[] toCIEXYZ(float[] colorvalue)
  {
    // FIXME: Not implemented
    throw new UnsupportedOperationException();
  }

  public float[] fromCIEXYZ(float[] colorvalue)
  {
    // FIXME: Not implemented
    throw new UnsupportedOperationException();
  }
}