Talk About Network

Google


Register and Login
Nick
Password
Register create new account Sign up is FREE and you can post replies, new topics, bookmark posts and more!
Recover lost password


Programming > Java Help > Compare two ima...
Latest [ Topics | Posts ] Archive Post A New Topic Post a Reply
<< Topic < Post Post 1 of 11 Topic 15935 of 16566
Post > Topic >>

Compare two images....?

by TheBigPJ <TheBigPJ@[EMAIL PROTECTED] > Apr 1, 2008 at 12:11 PM

Suggestions on the best (preferably easiest way) to compare two images
(captured both from the desktop via java robot) ?

The following code is the code I will be using to take the screen shot
(currently it saves just to a file):

im****t java.awt.*;
im****t java.awt.image.*;
im****t java.io.*;
im****t javax.imageio.*;

class Screenshot{

static public void main()
{
 try
 {
  //Get the screen size
  Toolkit toolkit = Toolkit.getDefaultToolkit();
  Dimension screenSize = toolkit.getScreenSize();
  Rectangle rect = new
Rectangle(0,0,screenSize.width,screenSize.height);
  Robot robot = new Robot();
  BufferedImage image = robot.createScreenCapture(rect);
  File file;

  //Save the screenshot as a png
  file = new File("screen.png");
  ImageIO.write(image, "png", file);

  //Save the screenshot as a jpg
  file = new File("screen.jpg");
  ImageIO.write(image, "jpg", file);
 }
 catch (Exception e)
 {
  System.out.println(e.getMessage());
 }
}
}


Thank you,
Peter (thebigpj)
 




 11 Posts in Topic:
Compare two images....?
TheBigPJ <TheBigPJ@[EM  2008-04-01 12:11:23 
Re: Compare two images....?
Roedy Green <see_websi  2008-04-01 21:04:35 
Re: Compare two images....?
Andrea Francia <andrea  2008-04-01 21:24:28 
Re: Compare two images....?
TheBigPJ <TheBigPJ@[EM  2008-04-01 14:27:33 
Re: Compare two images....?
Andrea Francia <andrea  2008-04-01 21:52:27 
Re: Compare two images....?
Roedy Green <see_websi  2008-04-01 23:58:24 
Re: Compare two images....?
TheBigPJ <TheBigPJ@[EM  2008-04-01 15:47:29 
Re: Compare two images....?
TheBigPJ <TheBigPJ@[EM  2008-04-01 17:25:35 
Re: Compare two images....?
"John B. Matthews&qu  2008-04-01 22:23:40 
Re: Compare two images....?
Chase Preuninger <chas  2008-04-03 18:49:28 
Re: Compare two images....?
TheBigPJ <TheBigPJ@[EM  2008-04-10 04:44:55 

Post A Reply:
  Go here to Signup

AddThis Feed Button


About - Advertising - Contact - Frequently Asked Questions - Privacy Policy - Terms of Use - Signup

Contact
tan12V112 Sat Nov 22 16:13:01 CST 2008.