我的应用程序将图像数据保存在数据库中,当将信息加载到表单中时,它将图像加载到面板中。这工作正常。但是如果用户不想保存图像,我在数据库的图像字段(varbinary)中插入了“0”。从数据库加载此信息(0x00000000)时,它会引发以下异常:
“参数无效。”
在这里,我给出一些代码:
将图像保存在数据库中:
if(user has selected an image)
{
Byte[] imageBytes = File.ReadAllBytes(imagePatient);
sqlCommand.Parameters.AddWithValue("Img", imageBytes); //Img is database column for images
}
else
{
sqlCommand.Parameters.AddWithValue("Img", 0);
}
从数据库加载图像:
Byte[] imageData = new Byte[0];
imageData = (Byte[])(dataSet.Tables["Patients"].Rows[0]["Img"]);
MemoryStream stream = new MemoryStream(imageData);
panelImage.BackgroundImage = Image.FromStream(stream);
我试图进行一些检查,当且仅当数据不是零形式时才允许加载 BackgroundImage。
请告诉我如何解决这个问题?