jnbufferedimage.java

来自「纯java操作系统jnode,安装简单和操作简单的个人使用的Java操作系统」· Java 代码 · 共 40 行

JAVA
40
字号
package org.jnode.wt.image;

/*
 * Kishore.
 */

public class JNBufferedImage extends JNImage {
    /**
     * JNBufferedImage constructor comment.
     * @param width int
     * @param height int
     * @param imageType int
     */
    public JNBufferedImage(int width, int height, int imageType) {
        super(width, height, imageType);
    }

    /**
     * JNBufferedImage constructor comment.
     * @param width int
     * @param height int
     * @param imageType int
     * @param cm java.awt.image.IndexColorModel
     */
    public JNBufferedImage(int width, int height, int imageType, java.awt.image.IndexColorModel cm) {
        super(width, height, imageType, cm);
    }

    /**
     * JNBufferedImage constructor comment.
     * @param cm java.awt.image.ColorModel
     * @param raster java.awt.image.WritableRaster
     * @param isRasterPremultiplied boolean
     * @param properties java.util.Hashtable
     */
    public JNBufferedImage(java.awt.image.ColorModel cm, java.awt.image.WritableRaster raster, boolean isRasterPremultiplied, java.util.Hashtable properties) {
        super(cm, raster, isRasterPremultiplied, properties);
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?