我有一个writeablebitmap对象,我想在silverlight中保存到JPG,我该怎么做?
答案 0 :(得分: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);