I\'m using a class library that generates a large ImageSource, > 3000x3750 pixels. I would like to convert this ImageSource to BitmapImage so that I can take advantage of De
I know it's a old post, but try doing:
myBitmapImage = myImageSource as BitmapImage;
That works well.