1. 程式人生 > >C#將照片或圖片轉化為byte[]存入資料庫,從資料庫中讀照片

C#將照片或圖片轉化為byte[]存入資料庫,從資料庫中讀照片

publicstaticbyte[] GetBytesByImagePath(string strFile)
{
byte[] photo_byte =null;
using (FileStream fs =new FileStream(strFile, FileMode.Open, FileAccess.Read))
{
using (BinaryReader br =new BinaryReader(fs))
{
photo_byte
= br.ReadBytes((int)fs.Length);
}
}

return photo_byte;
}