当前位置:七道奇文章资讯编程技术Java编程
日期:2011-03-22 16:14:00  来源:本站整理

java实现屏幕取色[Java编程]

赞助商链接



  本文“java实现屏幕取色[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

代码1.在屏幕上输出当前鼠标所在的屏幕颜色.

import java.awt.*;
  public class PickColor {
public static void main(String[] args) {
PickColor pc = new PickColor();
Color color = pc.pickColor();
System.out.println("color = "+color);
}
  public Color pickColor() {
Color pixel = new Color(0,0,0);
Robot robot = null;
Point mousepoint;
int R,G,B;
// MouseInfo mouseinfo = new MouseInfo();
try {
robot = new Robot();
} catch (AWTException e) {
e.printStackTrace();
System.exit(1);
}
mousepoint = MouseInfo.getPointerInfo().getLocation();
pixel = robot.getPixelColor(mousepoint.x,mousepoint.y);
R = pixel.getRed();
G = pixel.getGreen();
return pixel;
}
  }

代码2.利用一个GUI,输出当前鼠标所在的屏幕颜色,并改变GUI的后台色.

// create by kin 2004/10/24 refer to http://dev.csdn.net/article/44/44529.shtm

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
  public class PickColor2 extends JFrame {
public static void main(String[] args) {
PickColor2 pc = new PickColor2();
//Color color = pc.pickColor();
//System.out.println("color = "+color);
}
  public PickColor2 () {
super("Pick Color");
setSize(200,200);
JPanel p =new JPanel();
getContentPane().add(p);
// this mouse listener only is limited in the java desktop region
p.addMouseMotionListener(new PickColorMouesMotionListener(p));
// this thread is really effected!
new PickColorThread(p).start();
setVisible(true);
}
  /**Mouse Motion Listener,when mouse are moving, then set corresping screens color to the JPanels background Color. */
class PickColorMouesMotionListener extends MouseMotionAdapter {
private JPanel p = null;
PickColorMouesMotionListener(JPanel p) {
this.p = p;
}
public void mouseMoved(MouseEvent e) {
Color c = pickColor();
this.p.setBackground(c);
//System.out.println (c);
}
}
  class PickColorThread extends Thread {
private JPanel p = null;
PickColorThread(JPanel p){
this.p=p;
}
public void run () {
while (true) {
try {
Thread.currentThread().sleep(10);
Color c = pickColor();
  this.p.setBackground(c);
  // try change the foreground when background s r <= 50 or g <= 50 or b <= 50
Graphics g = p.getGraphics ();
if (c.getRed() <=50 || c.getGreen() <= 50 || c.getBlue() <= 50) {
g.setColor(Color.WHITE);
} else {
g.setColor(Color.BLACK);
}
g.drawString(c.toString(),0,100);
g = null;
//System.out.println (c);
} catch (InterruptedException e) {
e.printStackTrace();
System.exit(1);
}
}
}
}
  /**Get Screen Color*/
public Color pickColor() {
Color pixel = new Color(0,0,0);
Robot robot = null;
Point mousepoint;
int R,G,B;
// MouseInfo mouseinfo = new MouseInfo();
try {
robot = new Robot();
} catch (AWTException e) {
e.printStackTrace();
System.exit(1);
}
mousepoint = MouseInfo.getPointerInfo().getLocation();
pixel = robot.getPixelColor(mousepoint.x,mousepoint.y);
R = pixel.getRed();
G = pixel.getGreen();
return pixel;
}
  }


  以上是“java实现屏幕取色[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • 利用Javascript实现网页水印(非图片水印)
  • Java开辟环境的搭建
  • Ubuntu java安装与配置
  • 办理Ubuntu 10.04 Firefox3.6 Java浏览器插件不工作的问
  • Ubuntu重装后Java环境的设置
  • Sun Java进入Ubuntu 10.10软件中央
  • Ubuntu 10.10配置Java开辟环境
  • 在Ubuntu 10.10中配置Java环境变量的办法
  • Ubuntu下Java环境的搭建
  • Ubuntu 10.04 下安装 Java, JRE
  • Ubuntu 10.04下的搭建SUN JAVA开辟环境
  • Ubuntu 12.04安装java7
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .