Aria

Results 3 comments of Aria

Just a simple sample using base64 as @mattleibow mentioned and PocketView: ` using System; using System.IO; using System.Drawing; using System.Drawing.Imaging; using Microsoft.DotNet.Interactive.Formatting; MemoryStream memStream; Bitmap b = new Bitmap(50, 50);...

Just curious, would sending a MemoryStream, a Bitmap, or a Graphics object to the display function be recommended? I'm guessing not a Graphics object. Maybe MemoryStream in this case sense...

> > Just curious, would sending a MemoryStream, a Bitmap, or a Graphics object to the display function be recommended? > > I'm guessing not a Graphics object. Maybe MemoryStream...