This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
SPP=150 | |
#WIDTH=950 | |
#HEIGHT=540 | |
WIDTH=1920 | |
HEIGHT=1080 | |
CPULOAD=100 | |
THREADS=3 | |
SCENE=syc_zig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# From Minecraft Overviewer (https://github.com/overviewer/Minecraft-Overviewer) | |
# png-it.py script -- modified version which works with mapcrafter maps | |
""" | |
Outputs a huge PNG file using the tiles from a overviewer map. | |
""" | |
from optparse import OptionParser | |
from PIL import Image | |
from os.path import join, split, exists |