郭工:数据库字段是Image类型,代码://连接数据源,取得数据集
FarPoint.Web.Spread.ImageCellType ImageCell= new FarPoint.Web.Spread.ImageCellType();
FpSpread1.Sheets[0].Cells[0, 0].CellType = ImageCell;
byte[] photo = new byte[0];
photo = (byte[])Ds.Tables[0].Rows[0][0];
MemoryStream stream = new MemoryStream(photo);
//转换成为图片格式。
System.Drawing.Image img = System.Drawing.Image.FromStream(stream, true);
FpSpread1.Sheets[0].Cells[0, 0].Value = img;
执行后:
代码方面有是么问题,请指教。
|