Mosaic generator written in Rust!
To build make sure you have rust installed.
cargo build --release
Once compiled, the binary can be found at target/release/emosaic
in the repository root.
The command expects a path to a directory containing square 'tile' images and a source image.
emosaic /path/to/tile/images/ source.png
The strategy used to generate the mosaic is controlled by the -m, --mode
option.
For each pixel in the source image a tile with the nearest matching average color will be emitted.
Assuming a source image with dimensions 100x100 and default tile size of 16 the output image will be 1600x1600.
For every 2x2 pixels one tile will be emitted. Tiles are divided into 2x2 segments and the average colour of each segment is stored. The tile with the nearest average color in each segment to the target pixels will be chosen. This mode may provide smoother transitions between tile images and works best if you have a large tile set.
Assuming a source image with dimensions 100x100 and default tile size of 16 the output image will be 800x800.
The source image is not analysed and tiles are simply randomized in the output. This mode is best combined with the -t, --tint-opacity
option to overlay the source image on top of the output. If your source image only contains a few colors (like a logo) this is the mode you want.
Assuming a source image with dimensions 100x100 and default tile size of 16 the output image will be 1600x1600.
By default the resulting image will be output to the current directory as output.png
. You can specify the output file with the -o, --output
option e.g.
emosaic -o /foo/bar/myimage.png /path/to/tile/images/ source.png
Output format is always PNG.
Each 'tile' in the output image will be 16x16 by default. Provide a custom size with the -s, --tile-size
option. Note the size of your source image and tile size dictate the final size of your output image. For example, if your source image is 100x200 and you specify a tile size of 32 with the default mode 1to1 the output image will be 3200x6400! So be careful!
emosaic -s 32 /path/to/tile/images/ source.png
Use the tinting option, -t, --tint-opacity
, to control the transparency of the source image overlayed on top of the the output mosaic. This can be useful to push the overall color of each tile closer to the color(s) it was sampled from in the source image. Value must be between 0 and 1. Default is 0.
emosaic -t 0.5 /path/to/tile/images/ source.png
When invoking emosaic for a given directory the images will be analysed with the results written to a cache file in the directory as .emosiac_*
. For example, invoking emosaic with -m 4to1
will output a file named .emosaic_4to1
in your tiles directory. Emosaic always looks for an existing cache file in the tiles directory before analysing tiles. This offers a significant speed-up when creating multiple images from the same source tiles.
If you add, remove or change images in your tiles directory you must delete the .emosaic_*
file(s) so that your tiles are reanalysed and a new cache file is created. You can either delete the file(s) manually or simply invoke emosaic with -f
to force reanalysis and update the cache file.