if (file_exists($path)) {
$fileContent = id3_getImage($path);
$fileMime = id3_getMimeOfImage($path); // is set to image/jpeg
if ($fileMime != "") {
header('Content-Type: '.$fileMime);
print($fileContent);
die;
}
}
所以上面的代码在浏览器中不起作用,但是当我用图像制作图像时
$img = imagecreatefromstring($fileContent);
imagejpeg($img, 'test.jpg');die;
图像已创建,我可以在我的计算机上查看它。所以我不知道我做错了什么:(
*这可能是apache conf中的设置吗?老实说,我对此一无所知