Photoshop Script to split large images into smaller ones
Here’s the code:var Tiler = function (width, height, tileSize, levels) { this.width = width; this.height = height; this.tileSize = (typeof tileSize === “undefined”) ? 256 : tileSize; this.levels = (typeof levels === “undefined”) ? 2 : levels; this.cols = Math.ceil(width/this.tileSize);…
Read more