I'm doing it on NodeJS with exec function.
Problem: i have to wait until the tile files to be written into the disk then i can upload those files to Amazon S3.
Question: Is is possible to perform upload function right after the tile is cropped or after the all tiles are cropped but not to be written to the disk (Still in memory)? I dont want to write the tile files to the disk, it's kind of slow
This is my code:
Code: Select all
convert <input> -resize 10000x10000 -background transparent -extent 10000x10000 -crop 256x256 -set filename:tile "%[fx:page.x/256]_%[fx:page.y/256]" +repage +adjoin <output>