CImage:Xdiv


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

Syntax

bResult = CImage:Xdiv( 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

Usually, the image should have real type pixels before using this method. The pixel type can be tested and changed using IsReal and SetPixelType . See Pixel Types for more information.

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 into 1.0, and saves the result back to the file. This produces an image that is the reciprocal of the original image:

 

I = new_image()

-- create a new CImage

I:Open(sPath)

-- load the image from a file named sPath

I:Xdiv( 1.0 )

-- perform the operation

I:Save()

 

Related Topics

CImage class


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