|
There is very powerfull option to generate text for several dialogs/features:
Available placeholders for file/image properties:
| Placeholder | Tag name/function |
| $D | - file directory/folder (whole path)
|
| $d | - file directory/folder (last subfolder only)
|
| $F | - file name (with extension)
|
| $N | - file name (without extension)
|
| $T | - file date/time (see Appendix A for additional examples)
|
| $U | - current system date/time (see Appendix A for additional examples)
|
| $X | - file directory index
|
| $M | - page index in a multipage image
|
| $Z | - actual zoom size (for full screen/slideshow)
|
| $B | - image bits per pixel
|
| $C | - JPG/Webshots image comment, if available
|
| $Ix | - value of the JPG IPTC tag x, if available (x is a number, see below) (IPTC PlugIn required)
|
| $Ex | - value of the JPG EXIF tag x, if available (x is a number, see below) (EXIF PlugIn required)
|
Important/interesting IPTC tags/placeholders, according to IPTC specification:
| Placeholder | Tag name/function |
| $I20
| - Supplemental Category
|
| $I40
| - Special Instructions
|
| $I65
| - Originating Program
|
| $I103
| - Original Transmission Reference
|
Important/interesting EXIF tags/placeholders, according to EXIF specification:
| Placeholder | Tag name/function |
| $E306
| - DateTime (see Appendix A for additional examples)
|
| $E532
| - ReferenceBlackWhite
|
| $E34850
| - ExposureProgram
|
| $E34855
| - ISOSpeedRatings
|
| $E36867
| - DateTimeOriginal (see Appendix A for additional examples)
|
| $E36868
| - DateTimeDigitized (see Appendix A for additional examples)
|
| $E37121
| - ComponentsConfiguration
|
| $E37122
| - CompressedBitsPerPixel
|
| $E37377
| - ShutterSpeedValue
|
| $E37379
| - BrightnessValue
|
| $E37380
| - ExposureBiasValue
|
| $E37381
| - MaxApertureValue
|
| $E37382
| - SubjectDistance
|
| $E37521
| - SubsecTimeOriginal
|
| $E37522
| - SubsecTimeDigitized
|
| $E40960
| - FlashPixVersion
|
| $E40963
| - ExifImageHeight
|
| $E41486
| - FocalPlaneXResolution
|
| $E41487
| - FocalPlaneYResolution
|
| $E41488
| - FocalPlaneResolutionUnit
|
| $E41492
| - SubjectLocation
|
| $E41988
| - DigitalZoomRatio
|
| $E41989
| - FocalLengthIn35mmFilm
|
| $E41990
| - SceneCaptureType
|
| $E41995
| - DeviceSettingDescription
|
| $E41996
| - SubjectDistanceRange
|
| $E416
| - GPSImgDirectionRef
|
| Note: | You can also use special EXIF tags from vendor specifications (Nikon, Canon, Fuji, Casio, Olympus).
|
Here is the list of tags for Nikon cameras (many models):
| Placeholder | Tag name/function |
| $E11
| - White Balance Adjustment
|
| $E14
| - Exposure Adjustment
|
| $E18
| - Flash Compensation
|
| $E129
| - Tone Compensation
|
| $E133
| - Manual Focus Distance
|
| $E136
| - AF Focus Position
|
| $E148
| - Saturation Adjustment
|
Here is the list of tags for Canon cameras (many models):
| Placeholder | Tag name/function |
| $E11
| - Easy shooting mode
|
| $E120
| - Camera Serial Number
|
Appendix A
By default, all date/time placeholders deliver full text including date and time. If you want to get only specific values, you can use additional placeholder options (ANSI C compatible):
| %y
| - year, 2 numbers (00-99)
|
Examples for file, EXIF or system date: Year: 2005, month: 11, day: 29
| $E36868(%Y_%m_%d)
| 2005_11_29
|
| $T(day:%d, month:%m, year: %Y)
| day: 29, month: 11, year: 2005
|
|