CImage:Open
The Open method loads an image from a file and attaches it to the CImage object. The image should be removed from memory using the class methods Close or delete.
bResult = CImage:Open( sPath ) |
Suppose an image file exists with a full path named sPath:
|
-- create a CImage object |
|
-- open the image from path sPath. |
|
-- if not opened, then... |
|
-- leave the script, etc. |
|
-- end of if block |
|
-- do something |
|
-- when done with I, remove it from memory |