CImage:Mul CImage:PolyFitDiv

CImage:Mulx


The Mulx method multiplies the pixel values by a constant value.

Syntax

bResult = CImage:Mulx( x )

    The value x may be passed as a number or a string.

    On success, this method returns true

    On failure, this method returns false.

Remarks

The value x can be passed as a numeric value or a string. Using a string is the only way to pass an rgb color value but it may also be used for numeric type images.

Example

The following script fragment loads an image from the file sPath, multiplies by the value 1.054, and saves the result back to the file:

 

I = CImage:new()

-- create a new CImage

I:Open(sPath)

-- load the image from a file named sPath

I:Mulx( 1.054 )

-- perform the operation

I:Save()

 

Related Topics

CImage