如何将base64字符串转换为图像二进制文件并保存到服务器上
本文关键字:二进制文件 保存 服务器 图像 base64 字符串 转换 | 更新日期: 2023-09-27 17:52:33
作为一个例子,我已经转换了一个画布元素与一个重新调整大小的图像,并发布到一个隐藏的输入字段,现在编码为
data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD...
这个值然后张贴到相同的页面,我需要将这个字符串转换成图像并保存到服务器上。
后台代码文件(upload.aspx)
protected void btnUpload_Click(object sender, EventArgs e)
{
HttpPostedFile filePosted = Request.Files["newinput"];
string base64String = filePosted.ToString();
// Convert Base64 String to byte[]
byte[] imageBytes = Convert.FromBase64String(base64String);
MemoryStream ms = new MemoryStream(imageBytes, 0, imageBytes.Length);
// Convert byte[] to Image
ms.Write(imageBytes, 0, imageBytes.Length);
System.Drawing.Image image = System.Drawing.Image.FromStream(ms, true);
//I DONT KNOW HOW TO WRITE ABOVE INTO THE SaveAs CONDITION BELOW
if (filePosted != null && filePosted.ContentLength > 0)
{
string fileNameApplication = Path.GetFileName(filePosted.FileName);
string fileExtensionApplication = Path.GetExtension(fileNameApplication);
// generating a random guid for a new file at server for the uploaded file
string newFile = Guid.NewGuid().ToString() + fileExtensionApplication;
// getting a valid server path to save
string filePath = Path.Combine(Server.MapPath("~/Assets/") + Request.QueryString["id"] + "/", newFile);
if (fileNameApplication != String.Empty)
{
filePosted.SaveAs(filePath);
}
}
我很确定我需要将这个图像数据转换为二进制文件之前保存在服务器上,但我不能完全得到我需要修改上面的代码。什么好主意吗?保存到服务器的代码不能工作。
一旦我将其转换为图像并更改其名称,我将通过LINQ将其存储回数据库-并附加一个URL。
希望以下功能有所帮助。
public string ImageToBase64(Image image,
System.Drawing.Imaging.ImageFormat format)
{
using (MemoryStream ms = new MemoryStream())
{
// Convert Image to byte[]
image.Save(ms, format);
byte[] imageBytes = ms.ToArray();
// Convert byte[] to Base64 String
string base64String = Convert.ToBase64String(imageBytes);
return base64String;
}
}
public Image Base64ToImage(string base64String)
{
// Convert Base64 String to byte[]
byte[] imageBytes = Convert.FromBase64String(base64String);
MemoryStream ms = new MemoryStream(imageBytes, 0,
imageBytes.Length);
// Convert byte[] to Image
ms.Write(imageBytes, 0, imageBytes.Length);
Image image = Image.FromStream(ms, true);
return image;
}
EDIT 1 -
从评论看来,你正在获得base64字符串,你需要将其保存为服务器上的图像,然后无论何时需要,你需要使用物理服务器路径显示该图像。
Ok。Base64ToImage将为base64字符串提供图像。您可以使用
将其保存在服务器上image.Save("PATH", System.Drawing.Imaging.ImageFormat.Jpeg);
您提供或创建的这个"PATH"可以作为URL存储在DB中,您可以在显示时使用。
注意:确保你有写权限,你保存图像的文件夹
EDIT-2 函数应该如下所示。请输入验证码,错误处理按要求进行。
protected void btnUpload_Click(object sender, EventArgs e)
{
HttpPostedFile filePosted = Request.Files["newinput"];
string base64String = filePosted.ToString();
// Convert Base64 String to byte[]
byte[] imageBytes = Convert.FromBase64String(base64String);
MemoryStream ms = new MemoryStream(imageBytes, 0, imageBytes.Length);
// Convert byte[] to Image
ms.Write(imageBytes, 0, imageBytes.Length);
System.Drawing.Image image = System.Drawing.Image.FromStream(ms, true);
string newFile = Guid.NewGuid().ToString() + fileExtensionApplication;
string filePath = Path.Combine(Server.MapPath("~/Assets/") + Request.QueryString["id"] + "/", newFile);
image.Save(filepath,ImageFormat.Jpeg);
}