gpt4 book ai didi

java - 如何使用 Swing 和 JLayer<> 在 Java 中制作模糊的 JFrame/JDialog?

转载 作者:搜寻专家 更新时间:2023-10-31 19:54:34 24 4
gpt4 key购买 nike

我正在尝试模糊我的 JFrames。这个想法是使用 JLayer/LayerUI 模糊 JFrame 中的所有组件/控件。这是我到目前为止所做的:

这是制作模糊效果的LayerUI类:

import java.awt.Component;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.image.BufferedImage;
import java.awt.image.BufferedImageOp;
import java.awt.image.ConvolveOp;
import java.awt.image.Kernel;
import javax.swing.JComponent;
import javax.swing.plaf.LayerUI;

public class BlurLayerUI extends LayerUI<Component> {

private BufferedImage mOffscreenImage;
private final BufferedImageOp mOperation;

public BlurLayerUI() {
int blurValue = 6;
int blurCount = blurValue*blurValue;
float ninth = 1.0f / blurCount;
float[] blurKernel = new float[blurCount];
for(int i=0; i<blurCount; i++) {
blurKernel[i] = ninth;
}
mOperation = new ConvolveOp(new Kernel(blurValue, blurValue, blurKernel), ConvolveOp.EDGE_NO_OP, null);
}

@Override
public void paint (Graphics g, JComponent c) {
int w = c.getWidth();
int h = c.getHeight();
if(w == 0 || h == 0) {
return;
}
// only create the offscreen image if the one we have is the wrong size.
if(mOffscreenImage == null || mOffscreenImage.getWidth() != w || mOffscreenImage.getHeight() != h) {
mOffscreenImage = new BufferedImage(w, h, BufferedImage.TYPE_INT_RGB);
}
Graphics2D ig2 = mOffscreenImage.createGraphics();
ig2.setClip(g.getClip());
super.paint(ig2, c);
ig2.dispose();
Graphics2D g2 = (Graphics2D)g;
g2.drawImage(mOffscreenImage, mOperation, 0, 0);
}

}

...这是一个创建 JFrame 的测试类:

import java.awt.Component;
import javax.swing.JLayer;

public class BlurryTest extends javax.swing.JFrame {

public BlurryTest() {
initComponents();
// what do I have to do here to blurry this JFrame ... ??
JLayer<Component> blurLayer = new JLayer<>(this.getLayeredPane(), new BlurLayerUI());
//this.add(blurLayer);
//this.setGlassPane(blurLayer);
//this.getGlassPane().setVisible(true);
}

private void initComponents() {

jButton1 = new javax.swing.JButton();
jButton2 = new javax.swing.JButton();
jCheckBox1 = new javax.swing.JCheckBox();
jTextField1 = new javax.swing.JTextField();
jTextField2 = new javax.swing.JTextField();

setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

jButton1.setText("jButton1");

jButton2.setText("jButton2");

jCheckBox1.setText("jCheckBox1");

jTextField1.setText("jTextField1");

jTextField2.setText("jTextField2");

javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addContainerGap()
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addComponent(jButton2)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 234, Short.MAX_VALUE)
.addComponent(jButton1))
.addComponent(jTextField1)
.addComponent(jCheckBox1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jTextField2))
.addContainerGap())
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addContainerGap()
.addComponent(jCheckBox1)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jTextField1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
.addComponent(jTextField2, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 69, Short.MAX_VALUE)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jButton1)
.addComponent(jButton2))
.addContainerGap())
);

pack();
}

public static void main(String args[]) {
java.awt.EventQueue.invokeLater(new Runnable() {
@Override
public void run() {
new BlurryTest().setVisible(true);
}
});
}

private javax.swing.JButton jButton1;
private javax.swing.JButton jButton2;
private javax.swing.JCheckBox jCheckBox1;
private javax.swing.JTextField jTextField1;
private javax.swing.JTextField jTextField2;

}

问题出在类的构造函数中。我必须如何构造提供 LayerUI 对象的 JLayer 对象来模糊 JFrame 的全部内容?

非常感谢任何帮助 - 谢谢!

最佳答案

组件直接添加到框架 contentPane 中,尝试使用...

JLayer<Component> blurLayer = new JLayer<>(this.getContentPane(), new BlurLayerUI());
setContentPane(blurLayer);

代替

BluredContentPane

关于java - 如何使用 Swing 和 JLayer<> 在 Java 中制作模糊的 JFrame/JDialog?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29143251/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com