This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| //Larger images can require more memory and time | |
| ini_set('memory_limit','2048M'); | |
| ini_set('max_execution_time','300'); | |
| //For testing purposes, I manually entered the input file name and destination folder | |
| $destinationDir = 'tiles/'; | |
| $fileName = 'map.jpg'; | |
| if (!file_exists($destinationDir)) { |