CImageView:SetZoom


The SetZoom method changes the image magnification, or "zoom" factor in the CImageView window.

Syntax

CImageView:SetZoom( nZoom )

where

    nZoom is the zoom number (see below.)

  

Mira displays images with the following zoom factors: 1/16, 1/8, 1/4, 1/2, 1, 2, 4, 8, and 16. This is encoded as the zoom numbers -16, -8, -4, -2, 1, 2, 4 , 8, and 16. The value ofnZoom must be one of these integer zoom numbers.

Example

The following script loads and displays an image and then sets the magnification factor (the zoom) to 1/2 normal by specifying a zoom factor of -2:

I = CImage:new()

-- create a CImage

I:Open(sPath)

-- load the from a file named sPath

V = I:Display()

-- display the image and return the CImageView V

V:SetZoom(-2)

-- set the zoom factor to -2 (magnification = 1/2)

Related Topics

GetZoom

CImageView class

CImage class