This method removes chromatic aberration artifacts from an image.
            
            
            
            Syntax
            
            
            
            
            'Declaration
 
Public Shared Sub RemoveChromaticAberration( _
   ByVal  As ImGearRasterPage, _
   ByVal  As Double, _
   ByVal  As Double, _
   ByVal  As ImGearPoint _
) 
             
        
            
            'Usage
 
Dim page As ImGearRasterPage
Dim redScale As Double
Dim blueScale As Double
Dim centerPoint As ImGearPoint
 
ImGearEffects.RemoveChromaticAberration(page, redScale, blueScale, centerPoint)
             
        
            
            public static void RemoveChromaticAberration( 
   ImGearRasterPage ,
   double ,
   double ,
   ImGearPoint 
)
             
        
            
            public: static void RemoveChromaticAberration( 
   ImGearRasterPage* ,
   double ,
   double ,
   ImGearPoint 
) 
             
        
            
            public:
static void RemoveChromaticAberration( 
   ImGearRasterPage^ ,
   double ,
   double ,
   ImGearPoint 
) 
             
        
             
        
            Parameters
- page
- Page to process.
- redScale
- Amount by which to scale the red component of the image. Valid range is 0.95...1.05.
- blueScale
- Amount by which to scale the blue component of the image. Valid range is 0.95...1.05.
- centerPoint
- Center point.
 
            
            
            
            
            
            
            
            
            
            
            
            See Also