ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Core Namespace / ImGearRasterPage Class / ColorProfile Property




In This Topic
    ColorProfile Property (ImGearRasterPage)
    In This Topic
    Gets or sets a local color profile associated with the image.
    Syntax
    'Declaration
     
    Public Property ColorProfile As ImGearColorProfile
    'Usage
     
    Dim instance As ImGearRasterPage
    Dim value As ImGearColorProfile
     
    instance.ColorProfile = value
     
    value = instance.ColorProfile
    public ImGearColorProfile ColorProfile {get; set;}
    public: __property ImGearColorProfile* get_ColorProfile();
    public: __property void set_ColorProfile( 
       ImGearColorProfile* value
    );
    public:
    property ImGearColorProfile^ ColorProfile {
       ImGearColorProfile^ get();
       void set (    ImGearColorProfile^ value);
    }

    Property Value

    ImGearColorProfile class object.
    Remarks
    If a color profile is set here, and profiles are enabled in ImGearColorProfileManager class, the local color profile will be used for color space conversions (instead of a global color profile). The default value is null.
    See Also