ColorCMYtoRGB Method (GdPictureImaging)
 
            
                In This Topic
            
            Converts the required CMY color, which is composed of a set of specified Cyan, Magenta and Yellow color components
            to the RGB color composed of a set of resulting red, green, and blue components.
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Sub ColorCMYtoRGB( _
   ByVal  As Integer, _
   ByVal  As Integer, _
   ByVal  As Integer, _
   ByRef  As Integer, _
   ByRef  As Integer, _
   ByRef  As Integer _
) 
             
        
            
            public void ColorCMYtoRGB( 
   int ,
   int ,
   int ,
   ref int ,
   ref int ,
   ref int 
)
             
        
            
            public procedure ColorCMYtoRGB( 
    : Integer;
    : Integer;
    : Integer;
   var  : Integer;
   var  : Integer;
   var  : Integer
); 
             
        
            
            public function ColorCMYtoRGB( 
    : int,
    : int,
    : int,
    : int,
    : int,
    : int
);
             
        
            
            public: void ColorCMYtoRGB( 
   int ,
   int ,
   int ,
   ref int ,
   ref int ,
   ref int 
) 
             
        
            
            public:
void ColorCMYtoRGB( 
   int ,
   int ,
   int ,
   int% ,
   int% ,
   int% 
) 
             
        
             
        
            Parameters
- Cyan
 
- The input value for the Cyan component. Use the value between 0 and 255.
 - Magenta
 
- The input value for the Magenta component. Use the value between 0 and 255.
 - Yellow
 
- The input value for the Yellow component. Use the value between 0 and 255.
 - Red
 
- Output parameter. The resulting value for the red component between 0 and 255.
 - Green
 
- Output parameter. The resulting value for the green component between 0 and 255.
 - Blue
 
- Output parameter. The resulting value for the blue component between 0 and 255.
 
            
             
            
            
            
            
            
            
            
            
            
            
            
            See Also