< prev index next >

test/java/awt/image/mlib/MlibOpsTest.java

Print this page


   1 /*
   2  * Copyright (c) 2007, 2013, 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     6556332 8011992 8012112
  27  * @summary Test verifies that on-demnad loading of medialib library does
  28  *          not break imageing ops based on this library.

  29  * @run     main MlibOpsTest
  30  * @run     main/othervm/policy=mlib.security.policy MlibOpsTest
  31  */
  32 
  33 
  34 import java.awt.Color;
  35 import java.awt.Graphics2D;
  36 import java.awt.RadialGradientPaint;
  37 import java.awt.geom.AffineTransform;
  38 import java.awt.geom.Point2D;
  39 import java.awt.image.AffineTransformOp;
  40 import java.awt.image.BufferedImage;
  41 import java.awt.image.BufferedImageOp;
  42 import java.awt.image.ByteLookupTable;
  43 import java.awt.image.ConvolveOp;
  44 import java.awt.image.Kernel;
  45 import java.awt.image.LookupOp;
  46 import java.util.Arrays;
  47 
  48 import sun.awt.image.ImagingLib;


   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     6556332 8011992 8012112
  27  * @summary Test verifies that on-demnad loading of medialib library does
  28  *          not break imageing ops based on this library.
  29  * @modules java.desktop/sun.awt.image
  30  * @run     main MlibOpsTest
  31  * @run     main/othervm/policy=mlib.security.policy MlibOpsTest
  32  */
  33 
  34 
  35 import java.awt.Color;
  36 import java.awt.Graphics2D;
  37 import java.awt.RadialGradientPaint;
  38 import java.awt.geom.AffineTransform;
  39 import java.awt.geom.Point2D;
  40 import java.awt.image.AffineTransformOp;
  41 import java.awt.image.BufferedImage;
  42 import java.awt.image.BufferedImageOp;
  43 import java.awt.image.ByteLookupTable;
  44 import java.awt.image.ConvolveOp;
  45 import java.awt.image.Kernel;
  46 import java.awt.image.LookupOp;
  47 import java.util.Arrays;
  48 
  49 import sun.awt.image.ImagingLib;


< prev index next >