npm i image-to-tile
import imageToTile from 'image-to-tile';
function makeItHappen() {
imageToTile('./input.png', './output-dir/');
}
This converts the input.png to a scaled pyramid of the image. The output dir would have the input files name plus _files
under the output dir. The folder structure would then be:
./output-dir/input_files/{x}/{y}/{z}.png
image-to-tile slice ./input.png ./output-dir/
This converts the input.png to a scaled pyramid of the image. The output dir would have the input files name plus _files
under the output dir. The folder structure would then be:
./output-dir/input_files/{x}/{y}/{z}.png