Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/andrucz/image-to-html

Transforms an image into an HTML table (each pixel is transformed into a table cell). Just for fun (if it can be considered fun).
https://github.com/andrucz/image-to-html

Last synced: 28 days ago
JSON representation

Transforms an image into an HTML table (each pixel is transformed into a table cell). Just for fun (if it can be considered fun).

Awesome Lists containing this project

README

        

image-to-html
=============

Transforms an image into an HTML table (each pixel is transformed into a table cell). Just for fun (if it can be considered fun).

Example of use
--------------

```java
File image = new File("angry-monkey.jpg");
File destination = new File("result.html");
ImageToHTMLConverter.convert(image, destination);
```