- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
你好,我是新来的,也是 Java 编程的新手。最近我正在尝试在 JPanel 中编写绘图功能。问题是,当我添加新的绘制矩形(只需在 JRadiobutton 中选择绘制矩形,然后拖动空白区域)时,它工作正常,但是当我按下撤消按钮时,原点处有一个点。绘制椭圆形和绘制折线效果很好。谁能帮我吗?
(抱歉我的英语不好,如果你没有明白我的问题,我很抱歉你可以尝试运行代码 -> 绘制矩形 -> 单击撤消 -> 在原点有一个点(这就是我的问题)我试图解释))
package com.jetbrains;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import java.awt.image.BufferedImage;
public class Main
{
private BufferedImage buffPNG = new BufferedImage(900,550,BufferedImage.TYPE_INT_ARGB);
private Main()
{
draw_Image img = new draw_Image();
JFrame frame = new JFrame("Ken's Paint");
JButton undo_Button = new JButton("Undo");
JRadioButton rb1 = new JRadioButton("Free Hand");
JRadioButton rb2 = new JRadioButton("Draw Rect");
JRadioButton rb3 = new JRadioButton("Draw Oval");
JMenuBar menu_Bar = new JMenuBar();
undo_Button.setContentAreaFilled(false);
undo_Button.setFocusPainted(false);
ButtonGroup mode_Group = new ButtonGroup();
mode_Group.add(rb1);
mode_Group.add(rb2);
mode_Group.add(rb3);
img.setDraw_Mode(1);
rb1.setSelected(true);
menu_Bar.add(rb1);
menu_Bar.add(rb2);
menu_Bar.add(rb3);
menu_Bar.add(undo_Button);
frameCreate(frame);
frame.setJMenuBar(menu_Bar);
frame.add(img);
rb1.addActionListener(e -> img.setDraw_Mode(1));
rb2.addActionListener(e -> img.setDraw_Mode(2));
rb3.addActionListener(e -> img.setDraw_Mode(3));
undo_Button.addActionListener(e -> img.undo_Pressed());
}
class draw_Image extends JPanel
{
int layerX = 0;
int layerY = 0;
int[] polyX = new int[3000];
int[] polyY = new int[3000];
int[] thick = new int[10000];
int[] nPoint = new int[10000];
int[] draw_Mode = new int[10000];
int[][] x = new int[10000][3000];
int[][] y = new int[10000][3000];
Color[] color = new Color[10000];
boolean dragged = false;
draw_Image()
{
setLayout(null);
setBounds(0,0,900,550);
setBackground(Color.lightGray);
for(int p = 0; p < 10000; p++)
{
draw_Mode[p] = 1;
thick[p] = 3;
color[p] = Color.black;
}
addMouseListener(new MouseAdapter()
{
@Override
public void mouseClicked(MouseEvent e) {super.mouseReleased(e);}
@Override
public void mouseReleased(MouseEvent e)
{
super.mouseReleased(e);
if(dragged)
{
layerX++;
dragged = false;
}
layerY = 0;
}
});
addMouseMotionListener(new MouseMotionListener()
{
@Override
public void mouseDragged(MouseEvent e)
{
dragged = true;
for(int k = layerY; k < 3000; k++)
{
x[layerX][k] = e.getX();
y[layerX][k] = e.getY();
}
nPoint[layerX]++;
layerY++;
repaint();
}
@Override
public void mouseMoved(MouseEvent e){}
});
}
@Override
public void paint(Graphics g)
{
super.paint(g);
Graphics2D g2 = (Graphics2D)g;
Graphics2D g3 = buffPNG.createGraphics();
g2.setColor(Color.white);
g2.fillRect(0,0,900,550);
g3.setColor(Color.white);
g3.fillRect(0,0,900,550);
/* Draw the image in polyline form (implemented multidimensional array (2D is used)) */
for(int i = 0; i <= layerX; i++)
{
for(int j = 0; j < 3000; j++)
{
polyX[j] = x[i][j];
polyY[j] = y[i][j];
}
g2.setColor(color[i]); /* Set the line color (g2 is for display) */
g3.setColor(color[i]); /* Set the line color (g3 is for buffered image) */
g2.setStroke(new BasicStroke(thick[i])); /* Set line thickness (g2 is for display) */
g3.setStroke(new BasicStroke(thick[i])); /* Set line thickness (g3 is for buffered image) */
if(draw_Mode[i] == 1) /* free hand */
{
g2.drawPolyline(polyX,polyY,nPoint[i]);
g3.drawPolyline(polyX,polyY,nPoint[i]);
}
else if(draw_Mode[i] == 2) /* draw rect */
{
g2.drawRect(polyX[0],polyY[0],(polyX[2999] - polyX[0]),(polyY[2999] - polyY[0]));
g3.drawRect(polyX[0],polyY[0],(polyX[2999] - polyX[0]),(polyY[2999] - polyY[0]));
}
else if(draw_Mode[i] == 3) /* draw oval */
{
g2.drawOval(polyX[0],polyY[0],(polyX[2999] - polyX[0]),(polyY[2999] - polyY[0]));
g3.drawOval(polyX[0],polyY[0],(polyX[2999] - polyX[0]),(polyY[2999] - polyY[0]));
}
}
}
void setDraw_Mode(int mode) /* Method to set draw mode */
{
for(int q = layerX; q < 10000; q++)
{
draw_Mode[q] = mode;
}
}
void undo_Pressed() /* Undo an action / Return to previous line drawing */
{
if(layerX > 0)layerX--;
for(int j = 0; j < 3000; j++)
{
x[layerX][j] = 0;
y[layerX][j] = 0;
}
nPoint[layerX] = 0;
setDraw_Mode(draw_Mode[layerX+1]);
repaint();
}
}
private void frameCreate(JFrame frame)
{
frame.pack();
Insets insetValue = frame.getInsets();
int height = insetValue.top + insetValue.bottom + 600 - 10;
int width = insetValue.left + insetValue.right + 900 - 10;
frame.setSize(width,height); /* Set the frame size */
frame.setLocation(195,50); /* Set the frame start up location */
frame.setResizable(false); /* Disable frame resize & full window option */
frame.setLayout(null); /* Set the layout to null */
frame.setVisible(true); /* Set the frame visible */
frame.getContentPane().setBackground(Color.white); /* Set the frame background color */
frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); /* Specify the default behavior upon closing */
}
public static void main(String[] args)
{
new Main();
}
}
最佳答案
不会解决您的问题,但有一些一般性提示:
class draw_Image extends JPanel
使用 API 作为类命名约定的指南。
int[] polyX = new int[3000];
int[] polyY = new int[3000];
int[] thick = new int[10000];
int[] nPoint = new int[10000];
不要在整个程序中使用硬编码数字。至少使用一个变量:
private static int SMALLER_SIZE = 3000;
private static int LARGER_SIZE = 10000;
...
int[] polyX = new int[SMALLER_SIZE];
int[] polyY = new int[SMALLER_SIZE];
int[] thick = new int[LARGER_SIZE];
int[] nPoint = new int[LARGER_SIZE];
更好的是,不要使用数组。而是使用ArrayList
。那么你就不需要为数组的大小选择一些随机的大数字。
int[] polyX = new int[SMALLER_SIZE];
int[] polyY = new int[SMALLER_SIZE];
不要保留两个数组。如果数据是相关的,那么数据应该存储在一个对象中。在上述情况下,您可以使用属于 JDK 的 Point
对象。因此,使用 ArrayList(而不是数组)的代码将类似于:
private ArrayList<Point> points = new ArrayList<Point>();
然后使用如下代码将 Point 对象添加到 ArrayList:
points.add( new Point(...) );
现在您的循环代码没有硬编码值:
for (int i = 0; i < points.getSize(); I++
{
Point p = points.get(i);
// do something with the Point
}
一些绘画技巧:
public void paint(Graphics g)
不要覆盖paint(...)。自定义绘制是通过重写 paintComponent(...)
g2.setColor(Color.white);
g2.fillRect(0,0,900,550);
g3.setColor(Color.white);
g3.fillRect(0,0,900,550);
不要对尺寸进行硬编码。您不知道屏幕尺寸可能是多少。相反,当您创建组件时,您只需执行以下操作:
DrawImage panel= new DrawImage();
panel.setBackground(Color.WHITE);
现在,当调用 super.paintComponent(...) 时,面板的背景将被涂成白色。
我也不知道你为什么使用透明的 BufferedImage。只需直接在面板上绘画即可。
如果您确实想知道如何在面板上的随机位置绘制矩形,那么您可以查看 Custom Painting Approaches 。它演示了两种常见的方法。您可能会使用 Draw On Component
示例,因为它允许您“撤消”矩形的绘制。当然,您需要实现此逻辑,但是通过保留 ArrayList 中的所有信息,这将很简单,只需删除列表中的最后一项即可。
关于java - (drawRect) 为什么点击撤销按钮后原点总是有一个点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45392453/
当点击content 时,我想触发我的alert。我的 content 中可以有任意数量的子元素,所以我不想对每个元素都进行硬编码。我想也许我可以监听对该父元素的点击,然后每次点击子元素都会触发我的操
对于 Mac 应用程序,我想检测应用程序中的用户事件,因此我可以定期让 Web 服务知道用户在端点上仍然处于事件状态。 在 Cocoa Touch 中,我会覆盖 UIApplication 的 sen
第一次在这里发帖,但天知道我一直使用这个网站来搜索问题 :P 好吧,我现在遇到了自己的问题,我似乎无法轻松地在 Google 上搜索,在玩了大约 2 小时后,我终于决定发布一个问题,看看你们是怎么想的
Angular 触控 ngTouch导致在触摸释放时发生点击。 有没有办法让点击发生在触摸开始? fast-click下面的指令似乎可以在触摸屏上执行我想要的操作,但它不适用于鼠标点击。 myApp.
1) 如果我有这个,当我点击子 Container 时它不会打印'tap': Container( color: Colors.red, child: GestureDetector(
我简直要发疯了,只是想从 jQuery 中的事件中解除 onclick 处理程序的绑定(bind),以便稍后可以将其绑定(bind)到另一个函数。 我已将代码隔离在测试页中,因此除了核心之外什么都没有
我有一个有趣的情况。我需要触发实时点击,因为简单的点击不起作用。 这就是我所拥有的: $('.text').trigger('click'); 但我需要这样的东西: $('.text').trigge
这是我的作业,这是我第一次做表单验证。以下代码分别是我的HTML代码和JavaScript代码。 HTML 代码: First N
正如标题所示,如何获取 Magento 中特定产品的浏览量/点击量/展示次数。欢迎任何帮助。 最佳答案 这个简单的示例将为您提供在您指定的日期+其查看次数之间查看过的产品列表: $fromDate =
我正在创建一个应用程序,但在其中遇到错误。我想在按钮上添加 OnclickListner。该按钮位于 fragment 类上。从这个 fragment 类我想继续另一个类。代码如下: fragment
我在数组中有一些值。首先,我想在 View 中显示该数组的前两个值,接下来我想在某些按钮单击操作后显示剩余的值,并将数组索引增加 1。例如:一次点击显示第三个值,然后另一次点击显示第四个值。 我怎样才
在下面的代码片段中,如果在链接上执行“CMD+CLICK”,则不会显示 alert('CMD')。这是为什么? 我想在用户按下 CMD 按钮(或 Windows 上的 CTRL 键)+单击 href
我希望在单击链接时开始加载一些内容。在单击该链接之前,我不希望它使用任何带宽。另外如何实现几乎所有灯箱中都能看到的旋转光标动画? 最佳答案 使用$.ajax()函数动态加载内容。 对于动画,请找到一个
我有如下的 DOM: users 当用户点击按钮时,它会将新的“td”附加到“tr”。它运作良好。问题:单击“a”我想打开两个链接。最好的方法是首先将当前页面重定向到另一个页面,然后
这是我正在尝试做的.. 点击按钮会显示一个随机数组项。 数组项只能显示一次。 目前我已经将代码设置为: 点击随机数组项显示。 按钮点击继续循环,没有结束。 按钮点击多次显示元素。 这是代码的链接 ht
我想创建...基本上是一个宏程序。点击记录后,它会记录所有鼠标(可能最终是键盘)事件。然后你可以保存,然后播放,鼠标应该移动并点击在相同的地方当你录制它时它会发生。 我知道如何获取全局鼠标事件,但我不
我有一个关于将 onClick 添加到 ListView 的问题,我已经尝试尽可能多地遵循 Android NotePad 教程,但是对于我的布局我不太明白如何添加它。 这是 Activity 类,它
我正在使用一个网站以表格的形式显示信息。用户可以单击表格中的行来更改它们的颜色,我还有一个按钮允许用户暂停页面的刷新,这样就不会添加新信息。这两个功能都适用于桌面,但不适用于触摸屏。我的第一个想法是触
所以我的网站上有一个正常的链接,我想为它添加跟踪。我可以设想很多方法来做到这一点,但我已经确定通过编写一个小的 jquery 函数并在我的标签中放置一个小片段来实现这一点非常简单: click me!
我正在尝试使我的图片按钮看起来不错。我尝试了几种不同的方法,但它们看起来都不对。这是一个圆形图像,我想让它看起来像是可以按下的。这是我到目前为止所得到的。 android:textAppearance
我是一名优秀的程序员,十分优秀!