CImage:KwdGetStr
The KwdGetStr method returns the value of a string keyword in the image header.
sValue = CImage:KwdGetStr( sKwd ) |
This method returns the value of a string type keyword. No test is performed to determine if the keyword actually exists but nil is returned for general failure, which could also indicate that the keyword is invalid or improperly formatted. To test whether the keyword exists, call KwdExists before this method. Alternatively, KwdGetStrEx returns 2 parameters: a boolean status code and the keyword value.
Suppose a CImage named I exists and contains keyword "FILTER". The following script fragment returns the value of FILTER for the image I:
|
-- read the keyword value |
|
-- print the value |
CImage, KwdGetStrEx, KwdGetVal, KwdGetNum, KwdGetDMS, KwdGetHMS