gpt4 book ai didi

php - 网站上的 MySQL BLOB 图像太大

转载 作者:行者123 更新时间:2023-11-29 20:58:02 26 4
gpt4 key购买 nike

我正在尝试将图像作为 BLOB 存储在我的数据库中。我知道这不是最佳解决方案,但现在必须这样做,因为它是一个小型数据库。当我上传照片时,它占用了太多空间,如图所示,并且被切成两半。有没有办法将其调整为缩略图。我无权访问任何 html 页面,只能有限访问 php 文件。我只能操作数据库。任何帮助,将不胜感激。 Image is too wide and cut in half

最佳答案

你可以看看THIS LINK

但是将图像保存在文件夹中并为其创建链接并将其插入数据库是相当好的...

例如

$fileName = $_FILES["image"]["name"]; 
$fileNameNew = preg_replace('/\s+/', '_', $fileName);
$fileTmpLoc = $_FILES["image"]["tmp_name"];
// Path and file name
$pathAndName = "My-Image-Folder/".$fileNameNew;
// Run the move_uploaded_file() function here
$moveResult = move_uploaded_file($fileTmpLoc, $pathAndName);
// Evaluate the value returned from the function if needed

然后在数据库中添加$pathAndName...

关于php - 网站上的 MySQL BLOB 图像太大,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37462777/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com