本文介绍了Windows Phone 8 blitting的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! Windows Phone 8(不是7.5)上是否可以进行blitting操作?我还没找到方法。我需要根据资产资源中的图像创建一个图像并对其进行blitting。那么。 // 加载源图像 BitmapImage bi = new BitmapImage( new Uri( / Assets / skin_01.png,UriKind.Relative)); // 创建新位图 WriteableBitmap wa_bmp = new WriteableBitmap( 64 , 64 ); // 如何从bi到wa_bmp进行blitting ??? 谢谢。解决方案 Is blitting operation available on Windows Phone 8 (not 7.5)? I have not found way. I need create an image and blitting to it from images in 'assets' resources. So.//load source imageBitmapImage bi = new BitmapImage( new Uri("/Assets/skin_01.png", UriKind.Relative) );//create new bitmapWriteableBitmap wa_bmp = new WriteableBitmap( 64, 64);//how to blitting from bi to wa_bmp ???Thank you. 解决方案 这篇关于Windows Phone 8 blitting的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云! 07-03 17:27