0

我有一个 writeablebitmap 对象,我想在 silverlight 中保存为 JPG,我该怎么做?

4

1 回答 1

2

我还将 writeablebitmap 对象转换为图像

WriteableBitmap bitmap = new WriteableBitmap(Width,Height);

//在位图上绘制的一些操作

进而

Image imageFHR = new Image();
 imageFHR.Source = bitmap;
 imageFHR.Height = Height;
 imageFHR.Width = Width;
 myCanvas.Children.Add(imageFHR);
于 2013-04-18T14:00:00.627 回答