stonecompass
stonecompass

Reputation: 548

Merging images in UWP

I'm drawing some lines in an InkCanvas which I'm converting to a BitmapImage. I want to merch this image with another BitmapImage, but I can't find any way to do this in UWP. Does anyone know a good way to do this?

Upvotes: 0

Views: 857

Answers (1)

Péter Bozsó
Péter Bozsó

Reputation: 1328

I suggest you to use WriteableBitmap with WritieableBitmapEx instead of BitmapImage. Then simply use WriteableBitmap's new Blit() function with None as BlendMode and you should have the desired effect.

Upvotes: 2

Related Questions