1、设置table列类型为 byte[]
DataTable dt=new DataTable();
dt.Columns.Add("Chapter", typeof(byte[]));
2、图片转byte[]
FileStream fs = new FileStream("路径", FileMode.Open, FileAccess.Read);
BinaryReader br = new BinaryReader(fs);
byte[] imgBytesIn = br.ReadBytes((int)fs.Length);
3、赋值 dt.Rows[0]["Chapter"] = imgBytesIn;
4、FastReport 添加一个Picture 添加一列图片列