composer require icydata/heatmap
use IcyData\Heatmap;
$heatmap = new Heatmap();
$heatmap->addPoint(10, 10);
...
$heatmap->addPoint(30, 30);
$heatmap->save('/tmp/heatmap.png');
$heatmap = new Heatmap([
'backgroundImg' => '/path/to/file.png'
]);
Please review LICENSE.md