Transforms an image into an HTML table (each pixel is transformed into a table cell). Just for fun (if it can be considered fun).
File image = new File("angry-monkey.jpg");
File destination = new File("result.html");
ImageToHTMLConverter.convert(image, destination);