Hello,
My application is opening, displaying and processing BitmapSource objects. I process them by reading in the bytes via "BitmapSource.CopyPixels(...)", and creating new ones based on the processed data via "BitmapSource.Create(...)". I've noticed that when I open the BitmapSource image I've created in a 3rd-party application (Photoshop) I get a message claiming that the image has no embedded color profile. Since the image I'm creating is simply a processed version of another image that probably has some sort of color profile, I'd like to be able to copy the source image color profile into the new BitmapSource object I create. How is this done? Thank you all in advance.
-L