I have an InkPresenter bound to a StrokeCollection in an MVVM model that I'm using for a signature panel. Before I send the data back to the server I want to convert the StrokeCollection to PNG data, here is what I have (I'm using the ImageTools library):
// Signature is a StrokesCollection
var bounds = Signature.GetBounds();
var inkSignature = new InkPresenter {Height = bounds.Height, Width = bounds.Width, Strokes = Signature};
var wbBitmap = new WriteableBitmap(inkSignature, null);
var myImage = wbBitmap.ToImage();
byte[] by = null;
MemoryStream stream = null;
using (stream = new MemoryStream())
{
PngEncoder png = new PngEncoder();
png.Encode(myImage, stream);
}
The stream is always just filled with 0's, I feel like I'm missing something really simple that I haven't thought of. Any ideas?