JPanel中的部分透明度

时间:2015-08-03 16:05:15

标签: java image swing transparency jcomponent

我有一个带有图像的框架,我想用我自己的组件选择该图像的一部分(扩展JComponent)。现在它看起来像是:

enter image description here

但我希望它看起来像那样:

enter image description here

我怎样才能做到这一点?

1 个答案:

答案 0 :(得分:1)

这实际上取决于您绘制组件的方式。如果您使用的是Graphics,可以将其强制转换为Graphics2D,然后您可以使用setPaint或setComposite来获得透明效果。

import javax.swing.JFrame;
import javax.swing.JPanel;
import java.awt.*;

/**
 * Created by odinsbane on 8/3/15.
 */
public class TransparentOverlay {

    public static void main(String[] args){

        JFrame frame = new JFrame("painting example");

        JPanel panel = new JPanel(){

            @Override
            public void paintComponent(Graphics g){
                Graphics2D g2d = (Graphics2D)g;
                g2d.setPaint(Color.WHITE);
                g2d.fill(new Rectangle(0, 0, 600, 600));
                g2d.setPaint(Color.BLACK);
                g2d.fillOval(0, 0, 600, 600);

                g2d.setPaint(new Color(0f, 0f, 0.7f, 0.5f));
                g2d.fillRect(400, 400, 200, 200);

                g2d.setPaint(Color.GREEN);
                g2d.setComposite(
                    AlphaComposite.getInstance(
                        AlphaComposite.SRC_OVER, 0.8f
                    )
                );

                g2d.fillRect(0,0,200, 200);
                g2d.setPaint(Color.RED);
                g2d.fillRect(400, 0, 200, 200);
            }
        };

        frame.setContentPane(panel);
        frame.setSize(600, 600);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setVisible(true);

    }

}

使用集合合并后,之后的所有绘图将具有相同的合成,直到您再次更改它。