(Read like "kanji")
A system to procedurally generate plausible but nonexistant kanji.
This system is set up as a series of scripts to perform each of the requisite steps. These scripts target Python 3.
First we need to initialize the KanjiVG submodule since that's what we use as the basis for our SVG files.
git submodule init
Now we need to install pip dependencies. On my machine, I need to create a virtual environment and install the dependencies there. Alternatively, you can get the dependencies through another means.
python -m venv env
source env/bin/activate
pip install -r requirements.txt
Presently, however, all the dependencies are purely cosmetic and thus optional. Scripts will work fine without them.
Then, we need to extract and process radicals as separate SVGs. This involves both pulling out component radicals (e.g. 亻or 糹), it also copies full characters like 頑.
./extract_radicals.py
Now we can generate some kanji! Since there are a few options, consult --help
to see everything, but the basic usage pattern is:
./build_kanji.py -o output_dir -c 100
If you need to start over, you can wipe the output data.
./clean.sh
These scripts are formatted using Black.
Available under the terms of the GNU Lesser General Public License, v2.1 only. All generated SVG files are licensed as Creative Commons Attribution-ShareAlike 3.0.