本文介绍了C#Base64的字符串作为JPEG图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想一个Base64String转换为需要被保存在本地的图像。
I am trying to convert a Base64String to an image which needs to be saved locally.
目前,我的code能够保存图像,但是当我打开保存的图像,它说:无效的图片。
At the moment, my code is able to save the image but when I open the saved image, it says "Invalid Image".
code:
try
{
using (var imageFile = new StreamWriter(filePath))
{
imageFile.Write(resizeImage.Content);
imageFile.Close();
}
}
的内容
是字符串,其中包含为Base64字符串
对象。
推荐答案
于是用code你提供。
So with the code you have provided.
var bytes = Convert.FromBase64String(resizeImage.Content);
using (var imageFile = new FileStream(filePath, FileMode.Create))
{
imageFile.Write(bytes ,0, bytes.Length);
imageFile.Flush();
}
这篇关于C#Base64的字符串作为JPEG图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!