Searched defs:destCM (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/java/awt/image/
H A DBufferedImageOp.java107 * @param destCM <CODE>ColorModel</CODE> of the destination. If null,
113 ColorModel destCM);
112 createCompatibleDestImage(BufferedImage src, ColorModel destCM) argument
H A DAffineTransformOp.java424 * If <CODE>destCM</CODE> is null,
430 * @param destCM <CODE>ColorModel</CODE> of the destination. If null,
436 ColorModel destCM) {
455 if (destCM == null) {
471 image = new BufferedImage(destCM,
472 destCM.createCompatibleWritableRaster(w,h),
473 destCM.isAlphaPremultiplied(), null);
435 createCompatibleDestImage(BufferedImage src, ColorModel destCM) argument
H A DConvolveOp.java256 * of bands. If destCM is null, an appropriate ColorModel will be used.
258 * @param destCM ColorModel of the destination. Can be null.
263 ColorModel destCM) {
271 if (destCM == null) {
272 destCM = src.getColorModel();
274 if (destCM instanceof IndexColorModel) {
275 destCM = ColorModel.getRGBdefault();
291 wr = destCM.createCompatibleWritableRaster(w, h);
294 image = new BufferedImage (destCM, wr,
295 destCM
262 createCompatibleDestImage(BufferedImage src, ColorModel destCM) argument
[all...]
H A DLookupOp.java353 * bands. If destCM is <code>null</code>, an appropriate
356 * @param destCM the destination's <code>ColorModel</code>, which
361 ColorModel destCM) {
366 if (destCM == null) {
424 image = new BufferedImage(destCM,
425 destCM.createCompatibleWritableRaster(w,
427 destCM.isAlphaPremultiplied(),
360 createCompatibleDestImage(BufferedImage src, ColorModel destCM) argument
H A DRescaleOp.java607 * @param destCM ColorModel of the destination. If null, the
612 ColorModel destCM) {
614 if (destCM == null) {
624 image = new BufferedImage (destCM,
625 destCM.createCompatibleWritableRaster(w, h),
626 destCM.isAlphaPremultiplied(), null);
611 createCompatibleDestImage(BufferedImage src, ColorModel destCM) argument
H A DColorConvertOp.java609 * @param destCM ColorModel of the destination. If null, an
613 * @throws IllegalArgumentException if <code>destCM</code> is
619 ColorModel destCM) {
621 if (destCM == null) {
637 return createCompatibleDestImage(src, destCM, cs);
641 ColorModel destCM,
644 if (destCM == null) {
655 destCM = new ComponentColorModel(destCS, nbits, hasAlpha,
662 image = new BufferedImage(destCM,
663 destCM
618 createCompatibleDestImage(BufferedImage src, ColorModel destCM) argument
640 createCompatibleDestImage(BufferedImage src, ColorModel destCM, ColorSpace destCS) argument
[all...]

Completed in 71 milliseconds