我想用鼠标输入在窗口上绘制像素 [英] I'd like to draw pixels on a window with mouse input

查看:81
本文介绍了我想用鼠标输入在窗口上绘制像素的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我已经花了几天的时间寻找用鼠标捕获将像素绘制到Java窗口中的方法.我正在寻找一些我可以插入的框架.这看起来是如此简单……任何帮助将不胜感激.

I've done days of searching for a way to draw pixels to a window in java with mouse capture. I'm looking for some framework I can just plug in. It seems like it would be so simple... Any help will be greatly appreciated.

(编辑) 这是一些无效的代码.

(EDIT) Here is some non-working code.

public class Base extends JPanel implements MouseMotionListener {

    public static void main(String[] args) {
        new Base();
    }

    final static int width = 800;
    final static int height = 600;
    BufferedImage img;
    Base() {
        img = new BufferedImage(width, height, BufferedImage.TYPE_INT_ARGB_PRE);
        JFrame frame = new JFrame();
        frame.addMouseMotionListener(this);
        frame.add(this);
        frame.setSize(width, height);
        frame.setEnabled(true);
        frame.setVisible(true);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }

    @Override
    public void mouseDragged(MouseEvent e) {
    }

    @Override
    public void mouseMoved(MouseEvent e) {
        Graphics g = img.getGraphics();
        g.drawRect(1, 1, width - 2, height - 2);
        g.dispose();
        repaint();
    }
    @Override 
    public void paintComponent(Graphics g) {
         g.drawImage(img, 0, 0, null);
    }

}

推荐答案

查看代码中的注释.

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

public class Base extends JPanel implements MouseMotionListener {

    public static void main(String[] args) {
        new Base();
    }

    final static int width = 400;
    final static int height = 300;
    BufferedImage img;
    Base() {

        img = new BufferedImage(width, height, 
            BufferedImage.TYPE_INT_ARGB_PRE);
        // do in preference to setting the frame size..
        setPreferredSize(new Dimension(width, height));
        JFrame frame = new JFrame();
        this.addMouseMotionListener(this); // INSTEAD OF THE FRAME
        frame.add(this);
        //frame.setSize(width, height);  DO INSTEAD...
        frame.pack();
        //frame.setEnabled(true);  REDUNDANT
        frame.setVisible(true);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);  // good call!
    }

    @Override
    public void mouseDragged(MouseEvent e) {
    }

    @Override
    public void mouseMoved(MouseEvent e) {
        Graphics g = img.getGraphics();
        g.setColor(Color.RED);  // SET A COLOR
        g.drawRect(1, 1, width - 2, height - 2);

        // DO SOMETHING UGLY
        g.setColor(Color.blue);
        Point p = e.getPoint();
        g.fillOval(p.x,p.y,5,5);

        g.dispose();
        repaint();
    }
    @Override
    public void paintComponent(Graphics g) {
         g.drawImage(img, 0, 0, null);
    }
}

这篇关于我想用鼠标输入在窗口上绘制像素的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆