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?

link|improve this question

40% accept rate
feedback

1 Answer

I think the issue is that the renderer doesn't have time to update the UI before you grab it. Try wrapping the bitmap creation to a Dispatcher.BeginInvoke call.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.