A program which converts images into Excel spreadsheets written in Go.
Usage examples can be found in cmd
.
Original image:
Conversion:
Note: There isn't a Windows build script so use WSL or build manually. It should still work correctly on Windows if build correctly though.
Prequsites:
- Go (>= 1.20)
Instructions:
- Clone the repository
$ git clone https://github.com/sccreeper/image2excel.git
- Build the project
$ cd ./image2excel
$ ./build.sh
- Run the program
cd ./build
./i2e -s 0.025 test_image.JPG
Usage:
./i2e -s <float> <image>
This argument scales the width and height of the image by a float value. It is recommended that this value is below 1.0 and if the image resolution is >1000x1000 it be set to 0.025-0.05 or lower.
Usage
./i2e --width <integer>
./i2e --height <integer>
These arguements can be used instead of the scale factor arguement, although they are still affected by it. They can not be used as the same time as each other because the aspect ratio is maintained.
- Add video support
- Add UI