मैं एक बाइट सरणी को एक छवि में बदलना चाहता हूं।
यह मेरा डेटाबेस कोड है जहां से मुझे बाइट सरणी मिलती है:
public void Get_Finger_print()
{
try
{
using (SqlConnection thisConnection = new SqlConnection(@"Data Source=" + System.Environment.MachineName + "\\SQLEXPRESS;Initial Catalog=Image_Scanning;Integrated Security=SSPI "))
{
thisConnection.Open();
string query = "select pic from Image_tbl";// where Name='" + name + "'";
SqlCommand cmd = new SqlCommand(query, thisConnection);
byte[] image =(byte[]) cmd.ExecuteScalar();
Image newImage = byteArrayToImage(image);
Picture.Image = newImage;
//return image;
}
}
catch (Exception) { }
//return null;
}
मेरा रूपांतरण कोड:
public Image byteArrayToImage(byte[] byteArrayIn)
{
try
{
MemoryStream ms = new MemoryStream(byteArrayIn,0,byteArrayIn.Length);
ms.Write(byteArrayIn, 0, byteArrayIn.Length);
returnImage = Image.FromStream(ms,true);//Exception occurs here
}
catch { }
return returnImage;
}
जब मैं एक टिप्पणी के साथ लाइन पर पहुंचता हूं, तो निम्न अपवाद होता है: Parameter is not valid.
जो भी इस अपवाद का कारण बन रहा है, उसे मैं कैसे ठीक कर सकता हूं?