Reputation: 3784
How can I convert a BitmapFrame to a BitmapImage?
Upvotes: 1
Views: 4416
Reputation: 29073
Take a look at the answers here: http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/dee0e287-b345-4e01-888a-ecfb9c3f40b0
Upvotes: 1
Reputation: 24713
You will need to save the BitmapFrame
to disk and then load it from disk to create your BitmapImage
.
Upvotes: 1