diff --git a/README.md b/README.md index 84b7adf..2901bc0 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,22 @@ image-to-ascii is a java image to ascii art parser, as the name implies, it generates an ASCII art from any image.
It is highly configurable but at the same time easy to use. + +## Results + +
+ +car + +neofetch + +lion + +hollow +
+
+ # Download -I haven't tested it yet, but I'm 99% sure you need to be using any jdk above 18
Gradle: ```gradle @@ -52,6 +66,7 @@ So if you are in a hurry or you just don't want to read the code you can use the fileWriter.flush(); ``` +
## Configurations @@ -71,7 +86,7 @@ If you want to configure more stuff such as the core algorithms, you can do it w .withColor(new AnsiColorAlgorithm()) .build(); - String asciiArt = AsciiParser.parse(imagePath, parserConfig); + String asciiArt = AsciiParser.parse(imagePath, parserConfig); ``` diff --git a/src/main/resources/image/car.png b/src/main/resources/image/car.png new file mode 100644 index 0000000..fc0e2ff Binary files /dev/null and b/src/main/resources/image/car.png differ diff --git a/src/main/resources/image/demo/car-colorful.png b/src/main/resources/image/demo/car-colorful.png new file mode 100644 index 0000000..0fe6ad9 Binary files /dev/null and b/src/main/resources/image/demo/car-colorful.png differ diff --git a/src/main/resources/image/demo/holow-knight-big.png b/src/main/resources/image/demo/holow-knight-big.png new file mode 100644 index 0000000..bcdcbe0 Binary files /dev/null and b/src/main/resources/image/demo/holow-knight-big.png differ diff --git a/src/main/resources/image/demo/lion-no-color.png b/src/main/resources/image/demo/lion-no-color.png new file mode 100644 index 0000000..e3a5ade Binary files /dev/null and b/src/main/resources/image/demo/lion-no-color.png differ diff --git a/src/main/resources/image/demo/neofetch.png b/src/main/resources/image/demo/neofetch.png new file mode 100644 index 0000000..4d3bac2 Binary files /dev/null and b/src/main/resources/image/demo/neofetch.png differ diff --git a/src/main/resources/image/hollow-knight.png b/src/main/resources/image/hollow-knight.png new file mode 100644 index 0000000..cecc9d9 Binary files /dev/null and b/src/main/resources/image/hollow-knight.png differ diff --git a/src/main/resources/image/lion.png b/src/main/resources/image/lion.png new file mode 100644 index 0000000..e3a8cc1 Binary files /dev/null and b/src/main/resources/image/lion.png differ