jdk/src/share/classes/java/awt/image/ConvolveOp.java
author dxu
Thu, 04 Apr 2013 15:39:17 -0700
changeset 16734 da1901d79073
parent 12813 c10ab96dcf41
permissions -rw-r--r--
8000406: change files using @GenerateNativeHeader to use @Native Summary: Use @Native annotation to mark constants interested by native codes Reviewed-by: alanb, anthony, prr
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
16734
da1901d79073 8000406: change files using @GenerateNativeHeader to use @Native
dxu
parents: 12813
diff changeset
     2
 * Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package java.awt.image;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.awt.color.ICC_Profile;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.awt.geom.Rectangle2D;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.awt.Rectangle;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.awt.RenderingHints;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.awt.geom.Point2D;
16734
da1901d79073 8000406: change files using @GenerateNativeHeader to use @Native
dxu
parents: 12813
diff changeset
    33
import java.lang.annotation.Native;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import sun.awt.image.ImagingLib;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * This class implements a convolution from the source
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * to the destination.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * Convolution using a convolution kernel is a spatial operation that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * computes the output pixel from an input pixel by multiplying the kernel
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * with the surround of the input pixel.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * This allows the output pixel to be affected by the immediate neighborhood
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * in a way that can be mathematically specified with a kernel.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 *<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 * This class operates with BufferedImage data in which color components are
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * premultiplied with the alpha component.  If the Source BufferedImage has
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * an alpha component, and the color components are not premultiplied with
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 * the alpha component, then the data are premultiplied before being
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
 * convolved.  If the Destination has color components which are not
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
 * premultiplied, then alpha is divided out before storing into the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
 * Destination (if alpha is 0, the color components are set to 0).  If the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
 * Destination has no alpha component, then the resulting alpha is discarded
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
 * after first dividing it out of the color components.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
 * Rasters are treated as having no alpha channel.  If the above treatment
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
 * of the alpha channel in BufferedImages is not desired, it may be avoided
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
 * by getting the Raster of a source BufferedImage and using the filter method
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
 * of this class which works with Rasters.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
 * If a RenderingHints object is specified in the constructor, the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
 * color rendering hint and the dithering hint may be used when color
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
 * conversion is required.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
 *<p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
 * Note that the Source and the Destination may not be the same object.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
 * @see Kernel
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
 * @see java.awt.RenderingHints#KEY_COLOR_RENDERING
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
 * @see java.awt.RenderingHints#KEY_DITHERING
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
public class ConvolveOp implements BufferedImageOp, RasterOp {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    Kernel kernel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    int edgeHint;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    RenderingHints hints;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * Edge condition constants.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * Pixels at the edge of the destination image are set to zero.  This
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     * is the default.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
16734
da1901d79073 8000406: change files using @GenerateNativeHeader to use @Native
dxu
parents: 12813
diff changeset
    82
    @Native public static final int EDGE_ZERO_FILL = 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
     * Pixels at the edge of the source image are copied to
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
     * the corresponding pixels in the destination without modification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
     */
16734
da1901d79073 8000406: change files using @GenerateNativeHeader to use @Native
dxu
parents: 12813
diff changeset
    88
    @Native public static final int EDGE_NO_OP     = 1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     * Constructs a ConvolveOp given a Kernel, an edge condition, and a
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
     * RenderingHints object (which may be null).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
     * @param kernel the specified <code>Kernel</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
     * @param edgeCondition the specified edge condition
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
     * @param hints the specified <code>RenderingHints</code> object
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
     * @see Kernel
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * @see #EDGE_NO_OP
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     * @see #EDGE_ZERO_FILL
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * @see java.awt.RenderingHints
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    public ConvolveOp(Kernel kernel, int edgeCondition, RenderingHints hints) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        this.kernel   = kernel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        this.edgeHint = edgeCondition;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        this.hints    = hints;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
     * Constructs a ConvolveOp given a Kernel.  The edge condition
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
     * will be EDGE_ZERO_FILL.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
     * @param kernel the specified <code>Kernel</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
     * @see Kernel
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
     * @see #EDGE_ZERO_FILL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    public ConvolveOp(Kernel kernel) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        this.kernel   = kernel;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        this.edgeHint = EDGE_ZERO_FILL;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * Returns the edge condition.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * @return the edge condition of this <code>ConvolveOp</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     * @see #EDGE_NO_OP
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * @see #EDGE_ZERO_FILL
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    public int getEdgeCondition() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        return edgeHint;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
     * Returns the Kernel.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
     * @return the <code>Kernel</code> of this <code>ConvolveOp</code>.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    public final Kernel getKernel() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
        return (Kernel) kernel.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
     * Performs a convolution on BufferedImages.  Each component of the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
     * source image will be convolved (including the alpha component, if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
     * present).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * If the color model in the source image is not the same as that
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     * in the destination image, the pixels will be converted
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
     * in the destination.  If the destination image is null,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
     * a BufferedImage will be created with the source ColorModel.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
     * The IllegalArgumentException may be thrown if the source is the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
     * same as the destination.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
     * @param src the source <code>BufferedImage</code> to filter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
     * @param dst the destination <code>BufferedImage</code> for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
     *        filtered <code>src</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
     * @return the filtered <code>BufferedImage</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
     * @throws NullPointerException if <code>src</code> is <code>null</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
     * @throws IllegalArgumentException if <code>src</code> equals
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
     *         <code>dst</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
     * @throws ImagingOpException if <code>src</code> cannot be filtered
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    public final BufferedImage filter (BufferedImage src, BufferedImage dst) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        if (src == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
            throw new NullPointerException("src image is null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        if (src == dst) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
            throw new IllegalArgumentException("src image cannot be the "+
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
                                               "same as the dst image");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        boolean needToConvert = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        ColorModel srcCM = src.getColorModel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        ColorModel dstCM;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        BufferedImage origDst = dst;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        // Can't convolve an IndexColorModel.  Need to expand it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        if (srcCM instanceof IndexColorModel) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
            IndexColorModel icm = (IndexColorModel) srcCM;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
            src = icm.convertToIntDiscrete(src.getRaster(), false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
            srcCM = src.getColorModel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        if (dst == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
            dst = createCompatibleDestImage(src, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
            dstCM = srcCM;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
            origDst = dst;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
            dstCM = dst.getColorModel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
            if (srcCM.getColorSpace().getType() !=
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
                dstCM.getColorSpace().getType())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
                needToConvert = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
                dst = createCompatibleDestImage(src, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
                dstCM = dst.getColorModel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
            else if (dstCM instanceof IndexColorModel) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
                dst = createCompatibleDestImage(src, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
                dstCM = dst.getColorModel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        if (ImagingLib.filter(this, src, dst) == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
            throw new ImagingOpException ("Unable to convolve src image");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        if (needToConvert) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
            ColorConvertOp ccop = new ColorConvertOp(hints);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
            ccop.filter(dst, origDst);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        else if (origDst != dst) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
            java.awt.Graphics2D g = origDst.createGraphics();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
                g.drawImage(dst, 0, 0, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
                g.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
        return origDst;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
     * Performs a convolution on Rasters.  Each band of the source Raster
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
     * will be convolved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * The source and destination must have the same number of bands.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     * If the destination Raster is null, a new Raster will be created.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
     * The IllegalArgumentException may be thrown if the source is
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
     * the same as the destination.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
     * @param src the source <code>Raster</code> to filter
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
     * @param dst the destination <code>WritableRaster</code> for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
     *        filtered <code>src</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
     * @return the filtered <code>WritableRaster</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
     * @throws NullPointerException if <code>src</code> is <code>null</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
     * @throws ImagingOpException if <code>src</code> and <code>dst</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     *         do not have the same number of bands
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     * @throws ImagingOpException if <code>src</code> cannot be filtered
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
     * @throws IllegalArgumentException if <code>src</code> equals
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
     *         <code>dst</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    public final WritableRaster filter (Raster src, WritableRaster dst) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        if (dst == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
            dst = createCompatibleDestRaster(src);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
        else if (src == dst) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
            throw new IllegalArgumentException("src image cannot be the "+
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
                                               "same as the dst image");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
        else if (src.getNumBands() != dst.getNumBands()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
            throw new ImagingOpException("Different number of bands in src "+
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
                                         " and dst Rasters");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
        if (ImagingLib.filter(this, src, dst) == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
            throw new ImagingOpException ("Unable to convolve src image");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
        return dst;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
     * Creates a zeroed destination image with the correct size and number
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
     * of bands.  If destCM is null, an appropriate ColorModel will be used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
     * @param src       Source image for the filter operation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
     * @param destCM    ColorModel of the destination.  Can be null.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
     * @return a destination <code>BufferedImage</code> with the correct
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
     *         size and number of bands.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
    public BufferedImage createCompatibleDestImage(BufferedImage src,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
                                                   ColorModel destCM) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        BufferedImage image;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
        int w = src.getWidth();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        int h = src.getHeight();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        WritableRaster wr = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        if (destCM == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
            destCM = src.getColorModel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
            // Not much support for ICM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
            if (destCM instanceof IndexColorModel) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
                destCM = ColorModel.getRGBdefault();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
                /* Create destination image as similar to the source
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
                 *  as it possible...
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
                wr = src.getData().createCompatibleWritableRaster(w, h);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
        if (wr == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
            /* This is the case when destination color model
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
             * was explicitly specified (and it may be not compatible
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
             * with source raster structure) or source is indexed image.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
             * We should use destination color model to create compatible
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
             * destination raster here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
            wr = destCM.createCompatibleWritableRaster(w, h);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        image = new BufferedImage (destCM, wr,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
                                   destCM.isAlphaPremultiplied(), null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        return image;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
     * Creates a zeroed destination Raster with the correct size and number
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
     * of bands, given this source.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
    public WritableRaster createCompatibleDestRaster(Raster src) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
        return src.createCompatibleWritableRaster();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
     * Returns the bounding box of the filtered destination image.  Since
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
     * this is not a geometric operation, the bounding box does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
     * change.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    public final Rectangle2D getBounds2D(BufferedImage src) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
        return getBounds2D(src.getRaster());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * Returns the bounding box of the filtered destination Raster.  Since
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * this is not a geometric operation, the bounding box does not
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * change.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
    public final Rectangle2D getBounds2D(Raster src) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
        return src.getBounds();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
     * Returns the location of the destination point given a
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
     * point in the source.  If dstPt is non-null, it will
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
     * be used to hold the return value.  Since this is not a geometric
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
     * operation, the srcPt will equal the dstPt.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
    public final Point2D getPoint2D(Point2D srcPt, Point2D dstPt) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
        if (dstPt == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
            dstPt = new Point2D.Float();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        dstPt.setLocation(srcPt.getX(), srcPt.getY());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
        return dstPt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
     * Returns the rendering hints for this op.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
    public final RenderingHints getRenderingHints() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
        return hints;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
}