Hello I have a following problem - in my web app I am using an html 5 report viewer with telerik reporting and from time to time I am encountering a following problem - picturebox control is not being loaded with image data. Attached is a screenshot with a problem.
I am loading image data as base:
[code]var bytes = Convert.FromBase64String(base64String);
using (var ms = new MemoryStream(bytes))
{
pbLogo.Value = Image.FromStream(ms);
}[/code]
I tried to search for similara problems, but none of the resolutions worked out.