如何在Windows Phone 8中合并两个图像

时间:2013-07-30 08:27:04

标签: c# windows-phone-7 windows-phone-8

我有两张图片:

Image frame = new Image();
Image inner = new Image();

frame.Source = new BitmapImage(new Uri("Assets/Frame.png", UriKind.Relative));
inner.Source = new BitmapImage(new Uri("Assets/Inner.png", UriKind.Relative));

我想合并两个图像,内部图像位于帧的中心。

我找不到Windows Phone特定的解决方案。我怎样才能做到这一点?感谢

1 个答案:

答案 0 :(得分:1)

WriteableBitmapEx库有一个Blit方法可以做到这一点。