02-17-2024, 01:58 PM
(02-17-2024, 12:54 PM)lopsided Wrote: but what i do is change the format.
...and keep the timestamp. I do not think that is possible with BIMP, but I might be wrong. Ask on the BIMP issues forum as mentioned earlier.
If it is a simple procedure it might be possible using ImageMagick. As an example, resize a folder full of png's and write as jpgs keeping the timestamp.
Code:
mogrify -verbose -resize 200x200 -define preserve-timestamp=true -format jpg -quality 90% *.png
All depends on what you need.