ImageConverter

Placeholders

In the text field of the "Add text" function, you can also use placeholders. With this, in addition to any text, you can, for example, also dynamically write the name of the file or the current date as text on images.

You can use the following placeholders and combine them with arbitrary text:

File Name and Folder

Placeholders holding the name and path of the file.

%filename%Name of File with File Extension
Example: image.png
%name%Name of File without File Extension
Example: image
%ext%File extension
Example: png
%path%Path of file without file name
Example: C:\folder\
%filepath% Path of file with file name
Example: C:\folder\image.png
%name;X-Y% Name of the file from character X to character Y. For example %name;1-4% for the first 4 letters of the file name.
%path;X-Y% Path of the file without file name from character X to character Y. For example %path;1-4% for the first 4 letters of the path.
%filepath;X-Y% Path of the file with file name from character X to character Y. For example %filepath;1-4% for the first 4 letters.

Current Date and Time

Placeholders referring to the current date and time.

%yyyy%Current Year written with four digits
%yy%Current Year written with two digits
%mm%Current Month, always two digits, leading zeros if necessary
%m%Current Month, one or two digits without leading zeros
%dd%Current Day, always two digits, leading zeros if necessary
%d%Current Day, one or two digits without leading zeros
%hh%Current Hour, always two digits, leading zeros if necessary
%h%Current Hour, one or two digits without leading zeros
%ii%Current Minute, always two digits, leading zeros if necessary
%i%Current Minute, one or two digits without leading zeros
%ss%Current Second, always two digits, leading zeros if necessary
%s%Current Second, one or two digits without leading zeros