东坡下载:内容最丰富最安全的下载站!

首页编程开发Java → java实现屏幕取色

java实现屏幕取色

相关文章发表评论 来源:本站原创时间:2014/1/16 22:00:36字体大小:A-A+

更多

作者:不详点击:194次评论:0次标签: 屏幕取色

代码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;
}

}


  • 屏幕取色软件
屏幕取色软件
(72)屏幕取色软件

对于经常用电脑处理图片或者专业的艺术设计人员来说,经常需要用到不同的颜色,而要记住每一个颜色代码显然是不现实的,这时候就可以用屏幕取色软件来拾取电脑桌面上需要的颜色。这类可以将屏幕上的任意一点的颜色读出来,转换成RGB和Hex形式的颜色值。特别适合网页设计人员,平面设计人员使用。东坡下载为大家整理了多个屏幕取色软件,每一个都经过测试,保证绿色无毒。

...更多>>

扩展知识

相关评论

阅读本文后您有什么感想? 已有 人给出评价!

  • 2791 喜欢喜欢
  • 2101 顶
  • 800 难过难过
  • 1219 囧
  • 4049 围观围观
  • 5602 无聊无聊
热门评论
最新评论
昵称:
表情: 高兴 可 汗 我不要 害羞 好 下下下 送花 屎 亲亲
字数: 0/500 (您的评论需要经过审核才能显示)

本类常用软件