本文介绍了如何使用C#windows窗体将图像转换为文本文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
PLZ帮我怎么做这个应用.. ??
plz help me how to do this application..??
推荐答案
private void Form1_Load(object sender, EventArgs e)
{
byte[] imageArray = System.IO.File.ReadAllBytes(@"F:\WebApplication1\WindowsFormsApplication1\eMeditime_logo_edited.png");
string base64ImageRepresentation = Convert.ToBase64String(imageArray);
using (StreamWriter writer = new StreamWriter(@"F:\ccon\abc.txt", true))
{
writer.Write(base64ImageRepresentation);
writer.Flush();
writer.Close();
}
}
这篇关于如何使用C#windows窗体将图像转换为文本文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!