https://github.com/mohido/simple_image_converter
A simple converter that takes an image and convert it to a simple file. This simple program was made to help us implement the picture rendering in the chess engine we are developing with "Concurrent Clean Programming Language."
https://github.com/mohido/simple_image_converter
Last synced: 4 months ago
JSON representation
A simple converter that takes an image and convert it to a simple file. This simple program was made to help us implement the picture rendering in the chess engine we are developing with "Concurrent Clean Programming Language."
- Host: GitHub
- URL: https://github.com/mohido/simple_image_converter
- Owner: Mohido
- License: mit
- Created: 2021-03-26T13:27:40.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-16T16:20:03.000Z (about 4 years ago)
- Last Synced: 2024-12-31T16:14:19.013Z (5 months ago)
- Language: Java
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Simple_Image_Converter
A simple converter that takes an image and convert it to a simple file. This simple program was made to help us implement the picture rendering in the chess engine we are developing with "Concurrent Clean Programming Language."
Used in: https://github.com/Tariqo/Clean-Chess-Application# How to use:
1) make sure to have the JRE installed on your machine.
2) open any terminal window and just run the jar file with the following commandjava -jar img_converter.jar "path"
3) If you see a successful message on the terminal it means that the file has been converted successfully.
4) Make Sure to have the latest JRE installed (Not the default windows version (1.8)).# Example:
on windows, runjava -jar .\img_conv.jar "\images\white_queen.png"
to see the cimg text file appears.
or more specificilly:java -jar .\img_conv.jar [filepath]
Note: in windows you should start with "\picture.png" (\\) if the picture is in the same directory as the JAR file.