CImage:DateStr


The DateStr method returns a string for the date-stamp at the beginning of the exposure.

Syntax

sDate = CImage:DateStr()

bullet.gif    The date sDate is a string in the form yyyy-mm-dd.

bullet.gif    On failure, this method returns nil.

Remarks

The return value is referred to GMT date. The related Date method returns the date as a number of days.

Example

Suppose that an image in the file sPath was acquired on 24 March 1996 GMT. The following script returns the date on which the image was acquired:

I = new_image()

-- create a new CImage

I:Open( sPath )

-- open the image

Printf( "d = %lg", I:Date())

-- Result: d = 9579 days

Printf( "D = '%s'", I:DateStr())

-- Result: D ='1996-03-24'

Related Topics

CImage class, Date, TimeStr


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