1

我有WriteableImage转换的问题。

我创建一个WriteableImage来处理它的像素,然后我想创建一个BitmapImage带有WriteableImage数据的,但没有成功......某些功能不支持 windows phone。

任何想法,一些?

4

1 回答 1

0

正如我们通常所期望的那样,BitmapImage不是WriteableBitamp的只读版本。(来自 BitmapImage 文档:“BitmapImage 可用于引用 JPEG 和 PNG 文件格式的图像。” http://msdn.microsoft.com/en-us/library/windowsphone/develop/system.windows.media。成像.bitmapimage(v=vs.105).aspx )

因此,进行“转换”的唯一方法可能是使用WriteableBitmap.SaveJpeg保存在内存流上,然后通过SetSource将其加载到BitmapImage。这不是一个好习惯,所以如果可能的话,我会一直使用 WritableBitmaps 并避免转换。

于 2013-06-04T08:34:07.503 回答