如何将图片存储到数据库。
怎么将图片存储到数据库呀?二进制?应该怎么用呢?请高手帮忙下,谢谢最好能把注释写上?
Bitmap bm=Your image;
int width=bm.Width;
int height=bm.Height;
int size=width * height;
byte[] pixel=new byte[size];
for(int y=0;y<height;y++)
{
for(int x=0;x<width;x++)
{
//把每个像素的值存在pixel数组中
Color cl=bm.GetPixel(x,y);
byte r=cl.R;
byte g=cl.G;
byte b=cl.B;
pixel[count++]=(byte)(0.30*r+0.59*g+0.11*b);
}
}
//存到数据库
仅针对灰度图