我正在尝试访问保存为blob的图像,并且列的类型是在mssql中使用c#保存的图像
使用c#代码正确显示检索图像时
使用php访问时,图片损坏了
我尝试过的代码
$image = imagecreatefromstring($stationDetail->cstatpic3);
ob_start();
imagejpeg($image);
$data = ob_get_contents();
ob_end_clean();
echo '<img src="data:image/jpeg;base64,' . base64_encode($data) . '" />';
exit;
also from this link