Copy this code and paste it in your HTML
function forceImageDownload($image_path) {
//set filename
//headers
header("Content-Transfer-Encoding: binary");
header("Content-Type: image/jpg");
header("Content-Disposition: attachment; filename=$filename");
}