Vypadá to, že chcete jednoduchý způsob, jak převést pole bajtů obrázku na obrázek. Žádný problém. Našel jsem článek to mi hodně pomohlo.
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 je Byte[] a to je to, co funkce GetImage bere jako objekt.