Change default contact sheet name
This commit is contained in:
parent
17ab746445
commit
231a6c9456
|
@ -45,7 +45,7 @@ public class CreateContactSheet extends AbstractPlaceholderAwarePostProcessor {
|
|||
int cols = Integer.parseInt(getConfig().getOrDefault(COLS, "8"));
|
||||
int rows = Integer.parseInt(getConfig().getOrDefault(ROWS, "7"));
|
||||
String color = getConfig().getOrDefault(BACKGROUND, "0x333333");
|
||||
String filename = getConfig().getOrDefault(FILENAME, "contactsheet.jpg");
|
||||
String filename = getConfig().getOrDefault(FILENAME, "$sanitize(${modelName})_$sanitize(${siteName})_$format(${localDateTime},yyyyMMdd-HHmmss).jpg");
|
||||
int thumbWidth = (int) ((totalWidth - (cols + 1) * padding) / (double)cols);
|
||||
|
||||
Path tempDir = createThumbnails(rec, config);
|
||||
|
|
Loading…
Reference in New Issue