< prev index next >

test/java/awt/image/ConvolveOp/OpCompatibleImageTest.java

Print this page


   1 /*
   2  * Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug     6585922
  27  * @summary Test verifies ConvolveOp creates compatible destination images
  28  *          of same type and this pair {src, dst} can be handled by the
  29  *          ConvolveOp filter.
  30  *

  31  * @run     main OpCompatibleImageTest
  32  */
  33 
  34 import java.awt.Color;
  35 import java.awt.Graphics;
  36 import java.awt.image.BufferedImage;
  37 import java.awt.image.BufferedImageOp;
  38 import java.awt.image.ColorModel;
  39 import java.awt.image.ConvolveOp;
  40 import java.awt.image.ImagingOpException;
  41 import java.awt.image.Kernel;
  42 
  43 public class OpCompatibleImageTest {
  44 
  45     public static void main(String[] args) {
  46         OpCompatibleImageTest t = new OpCompatibleImageTest();
  47         t.doTest(BufferedImage.TYPE_3BYTE_BGR);
  48         t.doTest(BufferedImage.TYPE_4BYTE_ABGR);
  49         t.doTest(BufferedImage.TYPE_BYTE_GRAY);
  50         t.doTest(BufferedImage.TYPE_INT_ARGB);


   1 /*
   2  * Copyright (c) 2007, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 /*
  25  * @test
  26  * @bug     6585922
  27  * @summary Test verifies ConvolveOp creates compatible destination images
  28  *          of same type and this pair {src, dst} can be handled by the
  29  *          ConvolveOp filter.
  30  *
  31  * @modules java.desktop/sun.awt
  32  * @run     main OpCompatibleImageTest
  33  */
  34 
  35 import java.awt.Color;
  36 import java.awt.Graphics;
  37 import java.awt.image.BufferedImage;
  38 import java.awt.image.BufferedImageOp;
  39 import java.awt.image.ColorModel;
  40 import java.awt.image.ConvolveOp;
  41 import java.awt.image.ImagingOpException;
  42 import java.awt.image.Kernel;
  43 
  44 public class OpCompatibleImageTest {
  45 
  46     public static void main(String[] args) {
  47         OpCompatibleImageTest t = new OpCompatibleImageTest();
  48         t.doTest(BufferedImage.TYPE_3BYTE_BGR);
  49         t.doTest(BufferedImage.TYPE_4BYTE_ABGR);
  50         t.doTest(BufferedImage.TYPE_BYTE_GRAY);
  51         t.doTest(BufferedImage.TYPE_INT_ARGB);


< prev index next >