Using C#, I\'m trying to load a JPEG file from disk and convert it to a byte array. So far, I have this code:
static void Main(string[] args) { System.Wi
Other suggestion:
byte[] image = System.IO.File.ReadAllBytes ( Server.MapPath ( "noimage.png" ) );
Should be working not only with images.