Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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).
- Host: GitHub
- URL: https://github.com/andrucz/image-to-html
- Owner: andrucz
- Created: 2013-01-08T15:48:39.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2016-11-05T16:01:28.000Z (about 8 years ago)
- Last Synced: 2024-04-15T00:41:40.390Z (9 months ago)
- Language: Java
- Homepage:
- Size: 27.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);
```