.Net下二进制形式的文件(图片)的存储与读取详细解析
程序员文章站
2024-02-28 12:36:58
.net下图片的常见存储与读取凡是有以下几种:存储图片:以二进制的形式存储图片时,要把数据库中的字段设置为image数据类型(sql server),存储的数据是byte[...
.net下图片的常见存储与读取凡是有以下几种:
存储图片:以二进制的形式存储图片时,要把数据库中的字段设置为image数据类型(sql server),存储的数据是byte[].
1.参数是图片路径:返回byte[]类型:
复制代码 代码如下:
public byte[] getpicturedata(string imagepath)
{
////根据图片文件的路径使用文件流打开,并保存为byte[]
filestream fs = new filestream(imagepath, filemode.open);//可以是其他重载方法
byte[] bydata = new byte[fs.length];
fs.read(bydata, 0, bydata.length);
fs.close();
return bydata;
}
2.参数类型是image对象,返回byte[]类型:
复制代码 代码如下:
public byte[] photoimageinsert(system.drawing.image imgphoto)
{
//将image转换成流数据,并保存为byte[]
memorystream mstream = new memorystream();
imgphoto.save(mstream, system.drawing.imaging.imageformat.bmp);
byte[] bydata = new byte[mstream.length];
mstream.position = 0;
mstream.read(bydata, 0, bydata.length);
mstream.close();
return bydata;
}
好了,这样通过上面的方法就可以把图片转换成byte[]对象,然后就把这个对象保存到数据库中去就实现了把图片的二进制格式保存到数据库中去了。下面我就谈谈如何把数据库中的图片读取出来,实际上这是一个相反的过程。
读取图片:把相应的字段转换成byte[]即:byte[] bt=(byte[])xxxx
1.参数是byte[]类型,返回值是image对象:
复制代码 代码如下:
public system.drawing.image returnphoto(byte[] streambyte)
{
system.io.memorystream ms = new system.io.memorystream(streambyte);
system.drawing.image img = system.drawing.image.fromstream(ms);
return img;
}
2.参数是byte[] 类型,没有返回值,这是针对asp.net中把图片从输出到网页上(response.binarywrite)
复制代码 代码如下:
public void writephoto(byte[] streambyte)
{
// response.contenttype 的默认值为默认值为“text/html”
response.contenttype = "image/gif";
//图片输出的类型有: image/gif image/jpeg
response.binarywrite(streambyte);
}
补充:
针对response.contenttype的值,除了针对图片的类型外,还有其他的类型:
复制代码 代码如下:
response.contenttype = "application/msword";
response.contenttype = "application/x-shockwave-flash";
response.contenttype = "application/vnd.ms-excel";
另外可以针对不同的格式,用不同的输出类型以适合不同的类型:
复制代码 代码如下:
switch (dataread("document_type"))
{
case "doc":
response.contenttype = "application/msword";
case "swf":
response.contenttype = "application/x-shockwave-flash";
case "xls":
response.contenttype = "application/vnd.ms-excel";
case "gif":
response.contenttype = "image/gif";
case "jpg":
response.contenttype = "image/jpeg";
}
一些相关的东西,可以作为参考
复制代码 代码如下:
image image= getimagefromclipboard();//实现从剪切板获取图像的功能
system.io.memorystream stream = new system.io.memorystream();
system.runtime.serialization.formatters.binary.binaryformatter formatter
= new system.runtime.serialization.formatters.binary.binaryformatter(); formatter.serialize(stream, image);
filestream fs=new filestream("xx",filemode.open,fileaccess.write);
fs.write(stream.toarray(),0,stream.toarray().length);