Sorry to post so many questions, but it is normal, I think, when starting with new software.
I use the string below after starting up imagemagick convert in the parameter section:
{current_image} -quality 75 -resize 1800x1200^ {local_workfolder}\overlays\template.png -compose over -composite {local_workfolder}\merged\{filename}
It works perfectly, except when there are spaces in the filenames.
Like 123564.jpg is no problem but using names like this: 3-2024-05-21 13.11.55.jpg gives a problem.
What are your thoughts about this?
Christian
console app, spaces in filename
-
- Posts: 45
- Joined: Mon Jan 01, 2024 11:21 am
- Contact:
Re: console app, spaces in filename
You should enclose names with spaces in quotation marks.
Try to use command line like this:
"{current_image}" -quality 75 -resize 1800x1200^ {local_workfolder}\overlays\template.png -compose over -composite "{local_workfolder}\merged\{filename}"
This should work with any names
Try to use command line like this:
"{current_image}" -quality 75 -resize 1800x1200^ {local_workfolder}\overlays\template.png -compose over -composite "{local_workfolder}\merged\{filename}"
This should work with any names
Oleg Yershov
-
- Posts: 45
- Joined: Mon Jan 01, 2024 11:21 am
- Contact:
Re: console app, spaces in filename
Yes, that's it.
I should know that
I should know that
Re: console app, spaces in filename
always put folder path in quotation marks in the command, if any folder name contains a space it gives an error