ऐसा लगता है कि आप छवि बाइट सरणी को चित्र में बदलने के लिए बस एक सरल विधि चाहते हैं। कोई बात नहीं। मुझे एक लेख मिला इससे मुझे बहुत मदद मिली।
System.Web.UI.WebControls.Image image = (System.Web.UI.WebControls.Image)e.Item.FindControl("image");
if (!String.IsNullOrEmpty(currentAd.PictureFileName))
{
image.ImageUrl = GetImage(currentAd.PictureFileContents);
}
else
{
image.Visible = false;
}
//The actual converting function
public string GetImage(object img)
{
return "data:image/jpg;base64," + Convert.ToBase64String((byte[])img);
}
PictureFileContents एक बाइट [] है और यही वह कार्य है जिसे GetImage एक वस्तु के रूप में ले रहा है।