Java2D 性能问题

2022-08-31 16:26:22

我在Java2D上有性能上的奇怪之处。我知道sun.java2d.opengl VM参数可以为2D启用3D加速,但即使使用它也有一些奇怪的问题。

以下是我运行的测试结果:

在 JComponent
图像 1 上绘制具有 32x32 像素图块的 25x18 地图 1 = .bmp格式,图像 2 = .png格式

Without -Dsun.java2d.opengl=true

120 FPS 使用.BMP图像 1
13 FPS 使用.PNG图像 2

With -Dsun.java2d.opengl=true

12 FPS 使用.BMP图像 1
700 FPS 使用.PNG图像 2

如果没有加速,我假设我在软件中所做的每一次drawImage()都会发生某种转换,并且在.PNG的情况下会大大降低FPS。但是,为什么在加速的情况下,结果会切换(而PNG实际上表现得非常快)?!疯狂!

.BMP图像 1 被转换为图像类型TYPE_INT_RGB。.PNG图像 2 转换为图像类型TYPE_CUSTOM。为了在有和没有opengl加速的情况下获得一致的速度,我必须创建一个图像类型为TYPE_INT_ARGB的新BufferedImage,并将图像1或图像2绘制到这个新图像。

以下是运行的结果:

Without -Dsun.java2d.opengl=true

120 FPS 使用.BMP图像 1
120 FPS 使用.PNG图像 2

With -Dsun.java2d.opengl=true

700 FPS 使用.BMP图像 1
700 FPS 使用.PNG图像 2

我真正的问题是,我是否可以假设TYPE_INT_ARGB将是所有系统和平台的本机映像类型?我假设这个值可能不同。有没有办法让我获得本机值,以便我可以随时创建新的缓冲图像以获得最佳性能?

提前致谢...


答案 1

我想我通过研究和从太多的Google搜索中将零碎的东西放在一起找到了解决方案。

这里是评论和所有:

private BufferedImage toCompatibleImage(BufferedImage image)
{
    // obtain the current system graphical settings
    GraphicsConfiguration gfxConfig = GraphicsEnvironment.
        getLocalGraphicsEnvironment().getDefaultScreenDevice().
        getDefaultConfiguration();

    /*
     * if image is already compatible and optimized for current system 
     * settings, simply return it
     */
    if (image.getColorModel().equals(gfxConfig.getColorModel()))
        return image;

    // image is not optimized, so create a new image that is
    BufferedImage newImage = gfxConfig.createCompatibleImage(
            image.getWidth(), image.getHeight(), image.getTransparency());

    // get the graphics context of the new image to draw the old image on
    Graphics2D g2d = newImage.createGraphics();

    // actually draw the image and dispose of context no longer needed
    g2d.drawImage(image, 0, 0, null);
    g2d.dispose();

    // return the new optimized image
    return newImage; 
}

在我之前的文章中,图形配置是保存系统上创建优化映像所需的信息。它似乎工作得很好,但我本来以为Java会自动为你做这件事。显然,你不能太舒服Java。:)我想我最终回答了我自己的问题。哦,好吧,希望它能帮助你们中的一些人,我看到你们试图将Java用于2D游戏。


答案 2

好吧,这是一篇旧帖子,但我想分享我关于使用Swing / AWT直接绘制的发现,没有BufferedImage。

当直接绘制到int[]缓冲区时,最好进行某种绘制,例如3D。完成映像后,您可以使用 ImageProducer 实例(如 MemoryImageSource)来生成映像。我假设您知道如何在没有图形/图形2的帮助下直接执行绘图。

    /**
* How to use MemoryImageSource to render images on JPanel
* Example by A.Borges (2015)
*/
public class MyCanvas extends JPanel implements Runnable {

public int pixel[];
public int width;
public int height;
private Image imageBuffer;   
private MemoryImageSource mImageProducer;   
private ColorModel cm;    
private Thread thread;


public MyCanvas() {
    super(true);
    thread = new Thread(this, "MyCanvas Thread");
}

/**
 * Call it after been visible and after resizes.
 */
public void init(){        
    cm = getCompatibleColorModel();
    width = getWidth();
    height = getHeight();
    int screenSize = width * height;
    if(pixel == null || pixel.length < screenSize){
        pixel = new int[screenSize];
    }        
    mImageProducer =  new MemoryImageSource(width, height, cm, pixel,0, width);
    mImageProducer.setAnimated(true);
    mImageProducer.setFullBufferUpdates(true);  
    imageBuffer = Toolkit.getDefaultToolkit().createImage(mImageProducer);        
    if(thread.isInterrupted() || !thread.isAlive()){
        thread.start();
    }
}
/**
* Do your draws in here !!
* pixel is your canvas!
*/
public /* abstract */ void render(){
    // rubisch draw
    int[] p = pixel; // this avoid crash when resizing
    if(p.length != width * height) return;        
    for(int x=0; x < width; x++){
        for(int y=0; y<height; y++){
            int color =  (((x + i) % 255) & 0xFF) << 16; //red
                color |= (((y + j) % 255) & 0xFF) <<  8; //green
                color |= (((y/2 + x/2 - j) % 255) & 0xFF) ;   //blue         
            p[ x + y * width] = color;
        }
    }        
    i += 1;
    j += 1;          
}    
private int i=1,j=256;

@Override
public void run() {
    while (true) {
        // request a JPanel re-drawing
        repaint();                                  
        try {Thread.sleep(5);} catch (InterruptedException e) {}
    }
}

@Override
public void paintComponent(Graphics g) {
    super.paintComponent(g);
    // perform draws on pixels
    render();
    // ask ImageProducer to update image
    mImageProducer.newPixels();            
    // draw it on panel          
    g.drawImage(this.imageBuffer, 0, 0, this);  
}

/**
 * Overrides ImageObserver.imageUpdate.
 * Always return true, assuming that imageBuffer is ready to go when called
 */
@Override
public boolean imageUpdate(Image image, int a, int b, int c, int d, int e) {
    return true;
}
}// end class

请注意,我们需要 MemoryImageSourceImage 的唯一实例。不要为每个帧创建新的图像或新的图像处理器,除非您已经调整了JPanel的大小。请参阅上面的 init() 方法。

在渲染线程中,请求重绘()。。在 Swing 上,repaint() 将调用被覆盖的 paintComponent(),在其中调用您的 render() 方法,然后要求您的 imageProducer 更新图像。完成图像后,使用 Graphics.drawImage() 绘制它。

要获得兼容的图像,请在创建图像时使用正确的颜色模型。我使用GraphicsConfiguration.getColorModel()

/**
 * Get Best Color model available for current screen.
 * @return color model
 */
protected static ColorModel getCompatibleColorModel(){        
    GraphicsConfiguration gfx_config = GraphicsEnvironment.
            getLocalGraphicsEnvironment().getDefaultScreenDevice().
            getDefaultConfiguration();        
    return gfx_config.getColorModel();
}

推荐