File PHP untuk pemuatan gambar

$image = 'path/to/image.jpg';
header('Content-Type: image/jpeg');
readfile($image);
Vic20