Search code examples
c#imagexamlwindows-8windows-runtime

add watermark on image in windows8


I can find lots of threads and blogs which related to add watermark to image, but all of them are using GDI+, in winrt, it couldn't work. Anyone know how to add watermark to image in windows 8 app?


Solution

  • This gets the job done visually:

    <Grid>
        <Image Source="{Binding MyImage}" />
        <Image Source="{Binding MyWatermark}" />
    </Grid>
    

    Same answer as here: https://stackoverflow.com/a/14509282/265706