Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Tiler | 4,673 | a year ago | 12 | mit | Python | |||||
👷 Build images with images | ||||||||||
Unexpected Isaves | 30 | a month ago | 11 | March 28, 2022 | 4 | mit | Python | |||
A Python library that paints an image on a spreadsheet, builds its pixel art in Minecraft, makes its ascii art, or makes a rubik's cube art out of it. | ||||||||||
Mc Pixelart Maker | 19 | 2 months ago | mit | JavaScript | ||||||
A client-side web application that creates add-ons for the popular game Minecraft, allowing you to bring any image from your computer into the game ! | ||||||||||
Texture_synthesis | 5 | 6 years ago | Python | |||||||
Procedural image processing | ||||||||||
Imageutils | 2 | 3 years ago | other | Java | ||||||
Minecraft Forge Mod that allows you to share screenshots, view images ingame, manage your local screenshots | ||||||||||
Image To Minecraft Map | 2 | 4 months ago | mit | TypeScript | ||||||
A web application that converts images to Minecraft NBT map .dat files, allowing such images to be displayed in Minecraft. |
👷 Build images with images.
Tiler is a tool to create an image using all kinds of other smaller images (tiles). It is different from other mosaic tools since it can adapt to tiles with multiple shapes and sizes (i.e. not limited to squares).
An image can be built out of circles, lines, waves, cross stitches, legos, minecraft blocks, paper clips, letters, ... The possibilities are endless!
git clone https://github.com/nuno-faria/tiler.git
;pip install -r requirements.txt
gen_tiles.py
can help in this task; it builds tiles with multiple colors based on the source tile (note: its recommended for the source file to have an RGB color of (240,240,240)). It is used as python gen_tiles.py path/to/image
and creates a folder with a 'gen_' prefix in the same path as the base image.python tiler.py path/to/image path/to/tiles_folder/
.All configurations can be changed in the conf.py
file.
gen_tiles.py
DEPTH
- number of divisions in each color channel (ex: DEPTH = 4 -> 4 * 4 * 4 = 64 colors);ROTATIONS
- list of rotations, in degrees, to apply over the original image (ex: [0, 90]).tiler.py
COLOR_DEPTH
- number of divisions in each color channel (ex: COLOR_DEPTH = 4 -> 4 * 4 * 4 = 64 colors);RESIZING_SCALES
- scale to apply to each tile (ex: [1, 0.75, 0.5, 0.25]);PIXEL_SHIFT
- number of pixels shifted to create each box (ex: (5,5)); if None, shift will be the same as the tile dimension);
OVERLAP_TILES
- if tiles can overlap;RENDER
- render image as its being built;POOL_SIZE
- multiprocessing pool size;IMAGE_TO_TILE
- image to tile (ignored if passed as the 1st arg);TILES_FOLDER
- folder with tiles (ignored if passed as the 2nd arg);OUT
- result image filename.Original cake image by pongsakornred from FLATICON.