I have a jpg blob thats been stored in an external DB and I\'m looking to display that as an image via php. The issue is whenever I set the Content-Type to
Content-Type
Try $im = imagecreatefromstring($data); The output it by imagejpeg($im);
$im = imagecreatefromstring($data);
imagejpeg($im);