CImage:Divx


The Divx method divides the image pixels by a constant value.

Syntax

bResult = CImage:Divx( x )

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

bullet.gif    On success, this method returns true

bullet.gif    On failure, this method returns false.

Remarks

If the image has an integer pixel type (test using IsInteger method), division by a number x > 1 may produce a choppy image unless you use SetPixelType to change to a real pixel type before calling Divx.

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 loads an image from the file sPath, divides by the value 1.24, and saves the result back to the file:

I = new_image()

-- create a new CImage

I:Open(sPath)

-- load the image from a file named sPath

I:Divx( 1.24 )

-- perform the operation

I:Save()

 

Related Topics

CImage class


Mira Pro x64 Script User's Guide, Copyright Ⓒ 2023 Mirametrics, Inc. All Rights Reserved.