Lines Matching refs:ColorSpace

53  * via an array of ColorSpace objects or an array of ICC_Profile objects.
73 ColorSpace[] CSList;
92 * directly from the ColorSpace of the source image to that of the
105 * Constructs a new ColorConvertOp from a ColorSpace object.
110 * In that case, the ColorSpace defines the destination color space
112 * ColorSpace defines an intermediate space to which the source is
114 * @param cspace defines the destination <code>ColorSpace</code> or an
115 * intermediate <code>ColorSpace</code>
120 public ColorConvertOp (ColorSpace cspace, RenderingHints hints)
123 throw new NullPointerException("ColorSpace cannot be null");
131 CSList = new ColorSpace[1]; /* non-ICC case: 1 ColorSpace in list */
139 * Constructs a new ColorConvertOp from two ColorSpace objects.
149 * @param srcCspace the source <code>ColorSpace</code>
150 * @param dstCspace the destination <code>ColorSpace</code>
155 public ColorConvertOp(ColorSpace srcCspace, ColorSpace dstCspace,
171 CSList = new ColorSpace[2];
186 * <p>For BufferedImages, if the ColorSpace
189 * the first conversion is to an appropriate ColorSpace.
191 * by the ColorSpace of the destination BufferedImage,
192 * the last conversion is to the destination's ColorSpace.
255 ColorSpace srcColorSpace, destColorSpace;
299 ColorSpace srcColorSpace,
301 ColorSpace destColorSpace) {
311 "Destination ColorSpace is undefined");
479 "Source or Destination ColorSpace is undefined");
616 * <code>ColorSpace</code> defined for the destination
620 ColorSpace cs = null;;
627 "Destination ColorSpace is undefined");
642 ColorSpace destCS) {
686 "Destination ColorSpace is undefined");
694 "Destination ColorSpace is undefined");
751 ColorSpace srcColorSpace,
753 ColorSpace dstColorSpace) {
758 (ICC_ColorSpace) ColorSpace.getInstance(ColorSpace.CS_CIEXYZ);
776 ColorSpace[] list;
802 ColorSpace cs;
949 "Destination ColorSpace is undefined");
1029 ColorSpace srcColorSpace = CSList[0];
1030 ColorSpace dstColorSpace = CSList[1];
1073 if (type == ColorSpace.TYPE_Lab) {
1080 } else if (type == ColorSpace.TYPE_XYZ) {
1091 private void getMinMaxValsFromColorSpaces(ColorSpace srcCspace,
1092 ColorSpace dstCspace) {