我有以下问题: 我正在使用c#和.aspx页面。在.aspx页面上我有一个GridView。我将GridView数据源设置为:
GridView1.DataSource = PictureInfo.PictureInfoList;
我的“PictureInfo”类看起来像这样:
public class PictureInfo
{
public static List<PictureInfo> PictureInfoList = new List<PictureInfo>();
public string PictureDescription { get; set; }
public byte[] Picture { get; set; }
}
是否可以以及如何在GridView中显示“byte [] Picture”中的图片?或者哪种方式可行?在将数据发送到数据库之前,我正以这种方式保存数据。我想在将它发送到数据库之前在GridView中显示它。你可以看到我是初学者,但如果我能做到这一点,我会很高兴。我的头脑已经从在线阅读一些解决方案,直到现在都没有帮助。
非常感谢
答案 0 :(得分:0)
public void ProcessRequest(HttpContext context)
{
context.Response.ContentType = "image/jpeg";
string ImageID=request["ID"];
//byte[] ImageByte=pictureInfo.Picture;//local imageByte
byte[] ImageByte=getImage(ImageId);//image byte from any other sour,e.g database
Stream strm = new MemoryStream(ImageByte));
long length = strm.Length;
byte[] buffer = new byte[length];
int byteSeq = strm.Read(buffer, 0, 2048);
while (byteSeq > 0)
{
context.Response.OutputStream.Write(buffer, 0, byteSeq);
byteSeq = strm.Read(buffer, 0, 2048);
}
}
现在 在gridview中为您的asp:image设置图片网址,如下所示
Image1.ImageUrl = "somthing.ashx?ID="+userImageID;
我希望你有唯一的ID可以让你的图像可见。我希望你现在已经完成了所有工作。评论和查询都很有效。
public byte[] GetImage(string ImageId)
{ byte[] img = null;
DataTable dt = new DataTable();
SqlCommand cmd = new SqlCommand();
cmd.CommandType = CommandType.StoredProcedure;
cmd.CommandText = "SlikaHendler";
cmd.Parameters.AddWithValue("@Id", ImageId);
cmd.Connection = yourConnection();
SqlDataReader dr = null;
dr = cmd.ExecuteReader();
if (dr.Read())
{
img = (byte[])dr[0];
}
dr.Close();
return img;//returns array of byte
}
答案 1 :(得分:0)
我建议您使用以下解决方案:将byte[]
转换为Bitmap
(可能对您有用):
public BitmapSource ByteArrayToBitmap(byte[] byteArray) {
BitmapSource res;
try {
using (var stream = new MemoryStream(byteArray)) {
using (var bmp = new Bitmap(stream)) {
res = ToBitmap(bmp);
}
}
} catch {
res = null;
}
return res;
}
public BitmapSource ToBitmap(Bitmap bitmap) {
using (var stream = new MemoryStream()) {
bitmap.Save(stream, ImageFormat.Bmp);
stream.Position = 0;
var result = new BitmapImage();
result.BeginInit();
result.CacheOption = BitmapCacheOption.OnLoad;
result.StreamSource = stream;
result.EndInit();
result.Freeze();
return result;
}
}
接下来,您应该进行调整,并在Bitmap
中添加GridView
。
答案 2 :(得分:-1)
我知道图片被记录为数据库的二进制文件。在这方面,您的问题转向“将二进制转换为字节”。
如果你可以将你的图片信息作为二进制数据来获取,你可以将其转换为1个字节的3位数字,并转换为&amp;显示为字节。