c# 保存图片文件 winform
我想用一串字符生成二维码然后把这个二维码图片转成对象保存在本地指定路径下,如果不显示那个图片直接保存.png到默认路径的话要怎么做?求大神告知~~...
我想用一串字符生成二维码然后把这个二维码图片转成对象保存在本地指定路径下,如果不显示那个图片直接保存.png到默认路径的话要怎么做?求大神告知~~
展开
2个回答
展开全部
string Address =保存路径+图片名称;
byte[] bt = new byte[1024]; //图片二进制流
if (!Directory.Exists(Address))
{
Directory.CreateDirectory(Address);
}
using (FileStream fs = new FileStream(ImgName, FileMode.OpenOrCreate, FileAccess.Write))
{
fs.Write(bt, 0, bt.Length);
fs.Flush();
fs.Close();
}
byte[] bt = new byte[1024]; //图片二进制流
if (!Directory.Exists(Address))
{
Directory.CreateDirectory(Address);
}
using (FileStream fs = new FileStream(ImgName, FileMode.OpenOrCreate, FileAccess.Write))
{
fs.Write(bt, 0, bt.Length);
fs.Flush();
fs.Close();
}
追问
这是文件流吗 ? using (FileStream fs = new FileStream(ImgName, FileMode.OpenOrCreate, FileAccess.Write))后面的参数是什么意思
追答
恩 文件流,参数的意义看注释吧,有参数提示
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你的图片是不是用image.fromfile加到imagelist里的,如果是改成这种模式
filestream filestream = new filestream(filepath, filemode.open,fileaccess.read);
int bytelength = (int)filestream.length;
byte[] filebytes = new byte[bytelength];
filestream.read(filebytes, 0, bytelength);
//文件流关闭,文件解除锁定
filestream.close();
imagelist1.images.add(image.fromstream(new memorystream(filebytes)));
filestream filestream = new filestream(filepath, filemode.open,fileaccess.read);
int bytelength = (int)filestream.length;
byte[] filebytes = new byte[bytelength];
filestream.read(filebytes, 0, bytelength);
//文件流关闭,文件解除锁定
filestream.close();
imagelist1.images.add(image.fromstream(new memorystream(filebytes)));
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询