我在数据库中的 base64 中存储了多个图像。我使用 php 作为图像路径获取图像。但是我想在从 base64 解码时减小图像的大小,因为如果我加载全尺寸图像,它会减慢我的应用程序的速度。(我只需要在后端的全尺寸图像)。
/*
DB stuff getting base64 string from database
$img = base64 string (can be with 'data:image/jpg;base64,' in front, thats for the str_replace())
*/
if($img){
header("Content-Type: image/png");
echo base64_decode(str_replace("data:image/jpg;base64,","",$img));
}
这样一切都很好。我像这样使用它:
<img src="http://example.com/getimg.php?id=4" />
或在 css 中。由于安全原因,我需要这个,我不能在服务器上存储任何图像,也在我有access_token变量的路径中,所以随机的人看不到图像。
有没有办法在不将实际图像存储在服务器中的情况下做到这一点?