←Select platform

MultiplyCommand Class

Summary
Increases or decreases the brightness in the image by multiplying the colors in a specific image by a factoring value divided by 100.
Syntax
C#
Objective-C
C++/CLI
Java
Python
public class MultiplyCommand : RasterCommand 
@interface LTMultiplyCommand : LTRasterCommand 
public class MultiplyCommand 
    extends RasterCommand 
public ref class MultiplyCommand : public RasterCommand   
class MultiplyCommand(RasterCommand): 
Remarks
  • This class is used to increase or decrease the brightness in the image by multiplying the colors in a specific image by a factoring value divided by 100. For example, if the factoring value is 131, the colors in the image will be multiplied by 1.31.
  • This class supports 12 and 16-bit grayscale and 48 and 64-bit color images. Support for 12 and 16-bit grayscale and 48 and 64-bit color images is available only in the Document/Medical toolkits.
  • This command does not support 32-bit grayscale images.

If the image has a LUT and you want to work on the image data, set RasterImage.UseLookupTable to false. Then, after calling the method, reset the UselookupTable property to true, as follows:

rasterImage.UseLookupTable = false; 
Method(rasterImage); 
rasterImage.UseLookupTable = true; 

For more information, refer to Changing Brightness and Contrast.

Multiply Function - Before

Multiply Function - Before

Multiply Function - After

Multiply Function - After

View additional platform support for this Multiply function.

Example

Run the MultiplyCommand on an image with factor = 1.51.

C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing.Color; 
 
 
public void MultiplyCommandExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "IMAGE1.CMP")); 
 
   // Prepare the command 
   MultiplyCommand command = new MultiplyCommand(); 
   command.Factor = 151; 
   // Multiply the colors of the bitmap with 1.51. 
   command.Run(image); 
   codecs.Save(image, Path.Combine(LEAD_VARS.ImagesDir, "Result.jpg"), RasterImageFormat.Jpeg, 24); 
 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 22.0.2023.3.31
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.Color Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.