Displaying images in a console application?!

Posted by Stefan Kendall on Stack Overflow See other posts from Stack Overflow or by Stefan Kendall
Published on 2010-04-10T01:04:45Z Indexed on 2010/04/10 1:13 UTC
Read the original article Hit count: 387

Filed under:
|

I have a console application which screen scrapes some data, and now I need to do image comparisons. If the images are different, I want to show the images to the user. What's the best way to display two images during the execution of a console application? I'm assuming I would use some sort of inter-process communication to send information back and forth, but I'm not sure how exactly I would go about doing that in a good fashion.

Also, I'd rather NOT store the images to files if possible. There's no reason to persist the data, and if the console application terminates unexpectedly, it's better if I don't have any dirt left on the file system.

Does anyone have any thoughts on how best to accomplish this?

© Stack Overflow or respective owner

Related posts about java

Related posts about console-application