gpt4 book ai didi

java - Java中全透明窗口的形状刷新

转载 作者:行者123 更新时间:2023-12-02 00:40:23 25 4
gpt4 key购买 nike

这是我的第一个问题,因为到目前为止我可以通过其他问题找到任何内容。我的问题来了:我设计了一个 window ,上面有两个部分。左侧部分是完全透明的,我想在其上绘制一个可刷新的形状。 (在下文中,形状是正方形。)右侧部分始终是不透明的,我不会在其上绘制任何形状。一切正常,但对于左侧部分,背景形状不可刷新。

        package haxbot;

import java.awt.*;
import java.awt.Robot.*;
import javax.swing.*;
import java.awt.image.*;

// import com.sun.awt.AWTUtilities;
public class drawScreen extends javax.swing.JFrame {

public drawScreen() {
initComponents();
}
//-------------------- automatically created ---------------------------------
// <editor-fold defaultstate="collapsed" desc="Generated Code">
private void initComponents() {

jLabel1 = new javax.swing.JLabel();
jLabel2 = new javax.swing.JLabel();
jLabel5 = new javax.swing.JLabel();
jLabel6 = new javax.swing.JLabel();
jButton1 = new javax.swing.JButton();

setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
setAlwaysOnTop(true);
setCursor(new java.awt.Cursor(java.awt.Cursor.DEFAULT_CURSOR));
setResizable(false);
setUndecorated(true);
addMouseMotionListener(new java.awt.event.MouseMotionAdapter() {
public void mouseMoved(java.awt.event.MouseEvent evt) {
formMouseMoved(evt);
}
});

jLabel1.setText("Position:");

jLabel2.setForeground(new java.awt.Color(255, 0, 0));
jLabel2.setText("[ 123, 134]");

jLabel5.setText("Color:");

jLabel6.setForeground(new java.awt.Color(255, 0, 0));
jLabel6.setText("[ 255, 255, 255]");

jButton1.setBackground(new java.awt.Color(255, 0, 0));
jButton1.setFont(new java.awt.Font("Tahoma", 1, 11)); // NOI18N
jButton1.setForeground(new java.awt.Color(255, 0, 0));
jButton1.setText("X");
jButton1.addActionListener(new java.awt.event.ActionListener() {
public void actionPerformed(java.awt.event.ActionEvent evt) {
jButton1ActionPerformed(evt);
}
});

javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addContainerGap(853, Short.MAX_VALUE)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING, false)
.addGroup(layout.createSequentialGroup()
.addComponent(jLabel1)
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
.addComponent(jLabel2, javax.swing.GroupLayout.PREFERRED_SIZE, 88, javax.swing.GroupLayout.PREFERRED_SIZE))
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup()
.addComponent(jLabel5, javax.swing.GroupLayout.PREFERRED_SIZE, 40, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(26, 26, 26)
.addComponent(jLabel6, javax.swing.GroupLayout.PREFERRED_SIZE, 88, javax.swing.GroupLayout.PREFERRED_SIZE)))
.addComponent(jButton1, javax.swing.GroupLayout.Alignment.TRAILING)))
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGroup(layout.createSequentialGroup()
.addComponent(jButton1, javax.swing.GroupLayout.PREFERRED_SIZE, 15, javax.swing.GroupLayout.PREFERRED_SIZE)
.addGap(58, 58, 58)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel2)
.addComponent(jLabel1))
.addGap(18, 18, 18)
.addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE)
.addComponent(jLabel6)
.addComponent(jLabel5))
.addContainerGap(338, Short.MAX_VALUE))
);

pack();
}// </editor-fold>
//-------------------- automatically created (end) ---------------------------------

private void formMouseMoved(java.awt.event.MouseEvent evt) {
MousePos = evt.getPoint();
int mX = (int) MousePos.getX();
int mY = (int) MousePos.getY();
MousePos = evt.getPoint();
jLabel2.setText("[ " + mX + ", " + mY + " ]");
getColor(mX + (int) wind.getLocation().getX(), mY + (int) wind.getLocation().getY());
paint(this.getGraphics());
}

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {
System.exit(0);
}

public Color getColor(int mX, int mY) {
try {
robot = new Robot();
} catch (AWTException awtE) {
awtE.printStackTrace();
}

Rectangle captureSize = new Rectangle(mX - 15, mY - 15, 30, 30);
img = robot.createScreenCapture(captureSize);

currColor = robot.getPixelColor(mX, mY);


for (int i = 0; i < img.getWidth(); i++) {
for (int j = 0; j < img.getHeight(); j++) {
int x = img.getRGB(i, j);

}
}

jLabel6.setText("[ " + currColor.getRed() + ", " + currColor.getGreen() + ", "
+ currColor.getBlue() + "]");
return currColor;
}

public static void main(String args[]) {
graphicsObtained = false;
java.awt.EventQueue.invokeLater(new Runnable() {

public void run() {
wind = new drawScreen();
wind.setVisible(true);
wind.setLocation(182, 154);
wind.setDefaultCloseOperation(EXIT_ON_CLOSE);
try {
//UIManager.setLookAndFeel("javax.swing.plaf.metal.MetalLookAndFeel");
UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
SwingUtilities.updateComponentTreeUI(wind);
} catch (Exception ex) {
ex.printStackTrace();
}
// Add Transparency
// AWTUtilities.setWindowOpacity(wind, (float) 0.6);
currColors = new Color[10][10];

}
});
}

public void paint(Graphics g) {
leftScreen = (Graphics2D) g.create();
leftScreen.setClip(0, 0, 840, 410);

if (MousePos != null) {
//leftScreen.clearRect((int) MousePos.getX() - 150, (int) MousePos.getY() - 150, 300, 300);
leftScreen.drawRect((int) MousePos.getX() - 15, (int) MousePos.getY() - 15, 30, 30);
}

rightScreen = (Graphics2D) g.create();
rightScreen.setClip(850, 0, this.getWidth(), 410);
super.paint(rightScreen);
rightScreen.dispose();
leftScreen.dispose();
if (MousePos != null) {
//g2d1.clearRect(0, 0, 520, 430);
}


/*g2d.setColor(Color.red);
g2d.clearRect(55, 430, 90, 10);
if (MousePos != null)
g2d.drawString("[ " + MousePos.getX() + ", " + MousePos.getY() + " ]", 55, 440);
else
g2d.drawString("[ 0, 0 ]", 55, 440);*/

}
// Variables declaration - do not modify
private javax.swing.JButton jButton1;
private javax.swing.JLabel jLabel1;
private javax.swing.JLabel jLabel2;
private javax.swing.JLabel jLabel5;
private javax.swing.JLabel jLabel6;
// End of variables declaration
private Point MousePos;
private Point PlayerPos;
private Color currColor;
private static Color[][] currColors;
private static drawScreen wind;
private BufferedImage img;
private static boolean graphicsObtained;
private Graphics initialSection;
private Graphics2D leftScreen, rightScreen;
Robot robot = null;
}

---------------------- 编辑(第二个代码)-------------------- -----------------------

import java.awt.event.MouseEvent;
import javax.swing.*;
import java.awt.*;

// 3) Now in your class (which extends JFrame)
public class JFrameTrial extends JFrame {

public static void main(String[] args) {
MousePos = new Point(0, 0);

JFrameTrial jft = new JFrameTrial();
jft.setDefaultCloseOperation(EXIT_ON_CLOSE);
jft.setSize(300, 300);
jft.setVisible(true);

}

public JFrameTrial() {
/* 4) set the contentPane using setContentPane
as the class you just created extending JComponent.*/
jct = new JComponentTrial(150, 150);
setContentPane(jct);

addMouseMotionListener(new java.awt.event.MouseMotionAdapter() {
public void mouseMoved(MouseEvent e) {
MousePos = e.getPoint();
getContentPane().repaint();
}
});
}
private JComponentTrial jct;
private static Point MousePos;

// 1) But what you have to do is create a class which extends JComponent.
private class JComponentTrial extends JComponent {

public JComponentTrial(int x, int y) {
setSize(x, y);
}

// 2)There override the paintComponent() method with whatever you want to draw.
@Override
public void paintComponent(Graphics g) {
Graphics gg = g.create();
gg.setColor(Color.red);
gg.drawRect((int) MousePos.getX() - 15,
(int) MousePos.getY() - 15, 30, 30);
gg.dispose();
}
}
}

最佳答案

一些建议:

  • 在扩展 JPanel 或 JComponent 的类中绘制,而不是在 JFrame 中绘制。
  • 使用重写的paintComponent方法而不是paint方法进行绘制。
  • paintComponent 方法的第一行应该调用 super.paintComponent(g);
  • 不要丢弃在paintComponent(或paint)参数中传递给您的Graphics对象。仅处理您自己创建的 Graphics 或 Graphics2D 对象。

关于java - Java中全透明窗口的形状刷新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6554634/

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