NFT image generator
This is the project to help artists to generate NFT collection, which can be generated from layers of PNG images.
Usage
- Get archive for your system in the releases section.
- Unpack it to the directory you want to work in.
- You need to make sure that
collection_schema.json
exists and describes collection you want to generate. You can start with copyingsample_collection_schema.json
. - Also you need to create folder
layers
and put their folders according to the order you specified incollection_schema.json
. There are some for generating early versions of Party Parrots. - Run
image_generator
binary file. You can double-click it or run from Terminal / Console app as./image_generator
.
Dev notes
You can run project with:
cargo run
You can build it with
cargo build --release
You can cross-compile it for windows with:
cargo build --release --target x86_64-pc-windows-gnu