ColorContext Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents the International Color Consortium (ICC) or Image Color Management (ICM) color profile that is associated with a bitmap image.
public ref class ColorContext
public class ColorContext
type ColorContext = class
Public Class ColorContext
- Inheritance
-
ColorContext
Examples
The following code example demonstrates how to get the color profile that is associated with a bitmap image.
ColorConvertedBitmap myColorConvertedBitmap = new ColorConvertedBitmap();
myColorConvertedBitmap.BeginInit();
myColorConvertedBitmap.SourceColorContext = myBitmapSourceFrame2.ColorContexts[0];
myColorConvertedBitmap.Source = myBitmapSource2;
myColorConvertedBitmap.DestinationFormat = PixelFormats.Pbgra32;
myColorConvertedBitmap.DestinationColorContext = new ColorContext(PixelFormats.Bgra32);
myColorConvertedBitmap.EndInit();
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()
Remarks
The supported standard color spaces are sRGB, ScRGB, RGB, CMYK, Gray, Multichannel, and unknown.
Constructors
ColorContext(PixelFormat) |
Initializes a new instance of ColorContext with the standard color profile (sRGB or RGB ) that most closely matches the supplied PixelFormat. |
ColorContext(Uri) |
Initializes a new instance of ColorContext with the International Color Consortium (ICC) or Image Color Management (ICM) color profile located at a given Uri. |
Properties
ProfileUri |
Gets a Uri that represents the location of a International Color Consortium (ICC) or Image Color Management (ICM) color profile. |
Methods
Equals(Object) |
Determines whether an Object is equal to an instance of ColorContext. |
GetHashCode() |
Gets the hash code for this instance of ColorContext. |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
OpenProfileStream() |
Returns a readable Stream of raw color profile data. |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |
Operators
Equality(ColorContext, ColorContext) |
Operates on two instances of ColorContext to determine equality. |
Inequality(ColorContext, ColorContext) |
Operates on two instances of ColorContext to determine that they are not equal. |