東坡下載:內(nèi)容最豐富最安全的下載站!

首頁編程開發(fā)Java → java實(shí)現(xiàn)屏幕取色

java實(shí)現(xiàn)屏幕取色

相關(guān)文章發(fā)表評(píng)論 來源:本站原創(chuàng)時(shí)間:2014/1/16 22:00:36字體大小:A-A+

更多

作者:不詳點(diǎn)擊:194次評(píng)論:0次標(biāo)簽: 屏幕取色

代碼1。在屏幕上輸出當(dāng)前鼠標(biāo)所在的屏幕顏色。
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。使用一個(gè)GUI,輸出當(dāng)前鼠標(biāo)所在的屏幕顏色,并改變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)屏幕取色軟件

對(duì)于經(jīng)常用電腦處理圖片或者專業(yè)的藝術(shù)設(shè)計(jì)人員來說,經(jīng)常需要用到不同的顏色,而要記住每一個(gè)顏色代碼顯然是不現(xiàn)實(shí)的,這時(shí)候就可以用屏幕取色軟件來拾取電腦桌面上需要的顏色。這類可以將屏幕上的任意一點(diǎn)的顏色讀出來,轉(zhuǎn)換成RGB和Hex形式的顏色值。特別適合網(wǎng)頁設(shè)計(jì)人員,平面設(shè)計(jì)人員使用。東坡下載為大家整理了多個(gè)屏幕取色軟件,每一個(gè)都經(jīng)過測試,保證綠色無毒。

...更多>>

擴(kuò)展知識(shí)

相關(guān)評(píng)論

閱讀本文后您有什么感想? 已有 人給出評(píng)價(jià)!

  • 2791 喜歡喜歡
  • 2101 頂
  • 800 難過難過
  • 1219 囧
  • 4049 圍觀圍觀
  • 5602 無聊無聊
熱門評(píng)論
最新評(píng)論
發(fā)表評(píng)論 查看所有評(píng)論(0)
昵稱:
表情: 高興 可 汗 我不要 害羞 好 下下下 送花 屎 親親
字?jǐn)?shù): 0/500 (您的評(píng)論需要經(jīng)過審核才能顯示)