https://github.com/wklchris/cubimg
CubImg: An Image tool for magic cube drawing | CubImg:魔方图像绘制工具
https://github.com/wklchris/cubimg
image-tool magic-cube rubiks-cube
Last synced: 4 months ago
JSON representation
CubImg: An Image tool for magic cube drawing | CubImg:魔方图像绘制工具
- Host: GitHub
- URL: https://github.com/wklchris/cubimg
- Owner: wklchris
- License: mit
- Created: 2025-07-16T23:57:34.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-10-17T07:53:02.000Z (8 months ago)
- Last Synced: 2025-10-18T10:44:25.780Z (8 months ago)
- Topics: image-tool, magic-cube, rubiks-cube
- Language: C++
- Homepage:
- Size: 81.1 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
- License: LICENSE
Awesome Lists containing this project
README
# CubImg
[CubImg](https://wklchris) is an image tool for magic cube visualization.
## Installation
CubImg relies on drawing backends to draw cube images. The primary backend is [Gnuplot](http://www.gnuplot.info).
To use CubImg, users need to:
1. Download and install a supported backend. Adding it to PATH environment is also recommended.
2. Download the CubImg binary executable from the Release page of this repository. For developers, they might also be interested in [building the project](#build-and-libraries-used).
3. Follow the command line help or the project documentation to use CubImg.
## Build and Libraries Used
For users who would like to compile the CubImg project, they need to configure the following libraries on your device. Many thanks to these libraries:
* [CLIUtils/CLI11](https://github.com/CLIUtils/CLI11): For command line argument processing ([license](./LICENSE_CLI11)).
It is recommended to build the project with CMake:
```
cmake -S . -B build -DCMAKE_BUILD_TYPE=Release
cmake --build build
```
CubImg's executable would be generated under the folder `build/src`. Run it with:
```
./build/src/cubimg
```
## LICENSE
[MIT](./LICENSE)