- even to do this manually is not possible, as the "adjust date created" button in the "Current Image Information" dialogue is grayed out
- doing so by script does not work also (the field is simply not set on files, which don't already have such a field)
- even to script this date within files, which do already have the field, is hard to do, as PSP obviously uses a strange encoding in its function
e.g. a recorded script uses the following string to set the original + digitized dates to 2010-01-01 10:00:00
Code: Select all
# ImageInfo
App.Do( Environment, 'ImageInfo', {
[...]
'ExifDateTimeDigitized': u'\u3032\u3031\u303A\u3A31\u3130\u3120\u3A30\u3030\u303A0\u9098'\
u'\u0AAE\u0001',
'GeneralSettings': {
'ExecutionMode': App.Constants.ExecutionMode.Silent,
'AutoActionMode': App.Constants.AutoActionMode.Match,
'Version': ((15,0,0),1)
}
})Code: Select all
'ExifDateTimeDigitized': u'\u3931\u3738\u303A\u3A36\u3531\u3020\u3A31\u3332\u343A5\uCF88'\
u'\u0AB1', any help or hints appreciated - TIA!
