快速业务通道

java实现屏幕取色 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-22

java实现屏幕取色

时间:2010-12-29

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

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号