How can I render an HTML image from byte data loaded from a database?
I am retreiving data from database as a byte array. I need to convert that into png format. Is this possible??
below shown is the byte array.
Byte[] imageArray = new byte[0];
MyData = (Byte[])dt.Tables[0].Rows[3]["img"];