1. Go to this page and download the library: Download chillerlan/php-imagetiler library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
chillerlan / php-imagetiler example snippets
// invoke an options instance
$options = new ImagetilerOptions([
'zoom_min' => 0,
'zoom_max' => 8,
'zoom_normalize' => 6,
'fill_color' => 'transparent',
'fast_resize' => true,
'optimize_output' => true,
// ... whatever you need
]);
// see https://github.com/psliwa/image-optimizer#configuration
$optimizer = (new OptimizerFactory([]))->get();
// invoke and run the tiler
$tiler = new Imagetiler($options, $optimizer);
$tiler->process('/path/to/image.png', '/path/to/output/');