使用WriteableBitmap叠加两个图像

时间:2010-07-30 10:05:59

标签: silverlight bitmap writeablebitmap

我有两张图片,比如png和jpeg,我需要覆盖它们。 在WPF中,它可以通过DrawingGroup完成(在SL中不可用)。我猜它可能会完成 改用WriteableBitmap。你知道怎么做吗?

提前致谢!

干杯

1 个答案:

答案 0 :(得分:0)

只需使用Grid: -

 <Grid>
    <Image Source="MyPic1.png" VerticalAlignment="Top" HorizontalAlignment="Left" />
    <Image Source="MyPic2.jpg" VerticalAlignment="Top" HorizontalAlignment="Left" />
 </Grid>