8

根据任务,我们必须创建一个像 Picas 一样的图像查看器。中间的图片,半透明的黑色背景和使用左/右按钮更改图像。

我可以显示一个图像,将其设置为底涂,将其设置为半透明框架,但随着框架图像变得半透明。我究竟做错了什么。

Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();   

JFrame f1 = new JFrame("ShowImage");
f1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

f1.setSize(dim);

f1.setUndecorated(true);
f1.setOpacity(0.5f);
ShowImage panel = new ShowImage();
panel.setBackground(Color.black);

f1.setContentPane(panel); 
f1.setVisible(true);  

我试过

si.setOpaque();   
si.setBackground(Color.black);
si.setForeground(Color.red);

没有工作

当我取一个布尔值并进行测试时

si.isDisplayable();
si.isVisible();
si.isShowing();

只有可见返回为真,其余为假,这些是否有任何影响因素?

4

1 回答 1

21

问题是,JFrame的默认Layout管理器是 a BorderLayout,这意味着您的ShowImage窗格正在填充框架的整个区域(黑色)。我敢打赌,如果您将背景更改ShowPane为红色。它会显示为完全填充为红色

现在您可以查看A Visual Guide to Layout Managers或更改 ShowPane 的工作方式

更新

抱歉,我不熟悉 Java 7 中的新 Transparency API(仍在使用 Java 6 hack ;))

透明框

你能帮我验证一下这是你正在寻找的那种效果吗?读取方块是图像的位置(黑色背景是框架-nb,我只捕获了框架)

更新

图像预览

首先,您要阅读Window.isOpaqueWindow.setBackground以了解此解决方案的工作原理。

接下来,不要使用Window.setOpacity,它不会达到你想要的效果。主要原因是不透明度值应用于父级及其子级(最初是通过我)。

所以,框架代码:

Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();

setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

// Make sure where in the top left corner, please lookup how
// to find the screen insets ;)
setLocation(0, 0);
setSize(dim);
// Set undecorated
setUndecorated(true);
// Apply a transparent color to the background
// This is ALL important, without this, it won't work!
setBackground(new Color(0, 255, 0, 0));

// This is where we get sneaky, basically where going to 
// supply our own content pane that does some special painting
// for us
setContentPane(new ContentPane());
getContentPane().setBackground(Color.BLACK);
setLayout(new BorderLayout());

// Add out image pane...    
ShowImage panel = new ShowImage();
add(panel);

setVisible(true);

ContentPane。_ 基本上,我们需要“欺骗”绘制引擎,让其思考透明(不透明)的位置,然后绘制我们自己的不透明度

public class ContentPane extends JPanel {

    public ContentPane() {

        setOpaque(false);

    }

    @Override
    protected void paintComponent(Graphics g) {

        // Allow super to paint
        super.paintComponent(g);

        // Apply our own painting effect
        Graphics2D g2d = (Graphics2D) g.create();
        // 50% transparent Alpha
        g2d.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 0.5f));

        g2d.setColor(getBackground());
        g2d.fill(getBounds());

        g2d.dispose();

    }

}

我很抱歉我之前的回答,但我希望这可以弥补它;)

使用按钮更新

这就是我修改它的方式

ShowImage panel = new ShowImage();
panel.setBackground(Color.RED);

setContentPane(new ContentPane());
getContentPane().setBackground(Color.BLACK);
setLayout(new BorderLayout());
add(panel);

JPanel pnlButtons = new JPanel(new FlowLayout(FlowLayout.RIGHT));
pnlButtons.setOpaque(false);
pnlButtons.add(new JButton("<<"));
pnlButtons.add(new JButton("<"));
pnlButtons.add(new JButton(">"));
pnlButtons.add(new JButton(">>"));

// Okay, in theory, getContentPane() is required, but better safe the sorry
getContentPane().add(pnlButtons, BorderLayout.SOUTH);

setVisible(true);

带按钮的示例

于 2012-07-28T22:06:53.230 回答