Add font family selector for watermark text

Font picker using GTK FontDialog/FontDialogButton lets users choose
any installed system font for text watermarks. The selected font family
is passed through the processing pipeline and used to find the matching
font file on disk.
This commit is contained in:
2026-03-06 17:12:23 +02:00
parent 3109f97786
commit d9ce1f8731
5 changed files with 95 additions and 3 deletions

View File

@@ -313,6 +313,7 @@ fn cmd_process(args: CmdProcessArgs) {
font_size: 24.0,
opacity: args.watermark_opacity,
color: [255, 255, 255, 255],
font_family: None,
});
}
if args.rename_prefix.is_some() || args.rename_suffix.is_some() || args.rename_template.is_some() {