Wygląda na to, że potrzebujesz prostej metody konwersji tablicy bajtów obrazu na obraz. Nie ma problemu. Znalazłem artykuł to bardzo mi pomogło.
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 to Byte[] i to właśnie funkcja GetImage przyjmuje jako obiekt.