This documentation is archived and is not being maintained.
ColorContext Class
Visual Studio 2008
Represents the International Color Consortium (ICC) or Image Color Management (ICM) color profile that is associated with a bitmap image.
Assembly: PresentationCore (in PresentationCore.dll)
The following code example demonstrates how to get the color profile that is associated with a bitmap image.
Dim myColorConvertedBitmap As New ColorConvertedBitmap() myColorConvertedBitmap.BeginInit() myColorConvertedBitmap.SourceColorContext = myBitmapSourceFrame2.ColorContexts(0) myColorConvertedBitmap.Source = myBitmapSource2 myColorConvertedBitmap.DestinationFormat = PixelFormats.Pbgra32 myColorConvertedBitmap.DestinationColorContext = New ColorContext(PixelFormats.Bgra32) myColorConvertedBitmap.EndInit()
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: