Hi fmw42, Thanks for the quick reply. Here is the code snippet that crops a tile from given image: $img = new Imagick(); $img->readImage($sourcePath); $iW = $img->getImageWidth (); $iH = $img->getImageHeight(); $bW = $iW/$xNum; $bH = $iH/$yNum; $cropWidth = ($iW - $x*$bW); $cropWidth = $cropWidth ...