convert in.dng out.png resets timestamp of in.dng
Posted: 2016-02-12T14:22:17-07:00
Relaying a bug report found on StackOverflow:
updates the timestamp of "in.dng".
Butwhich I believe is the "delegate" command used by ImageMagick, does not.
Even worse, if I first make the in.dng unwriteablethen convert (a.k.a magick) successfully creates out.png but removes in.dng, without any error or warning message.
This test with ImageMagick-7.0.0-0 Q16 x86_64 2016-02-12 and ufraw-batch version 0.22.
Reference: http://stackoverflow.com/questions/3533 ... e-modified
Code: Select all
magick in.dng out.png
But
Code: Select all
ufraw-batch --silent --create-id=also --out-type=png --out-depth=16 --output=out.png in.dng
Even worse, if I first make the in.dng unwriteable
Code: Select all
chmod 400 in.dng
magick in.dng out.png
This test with ImageMagick-7.0.0-0 Q16 x86_64 2016-02-12 and ufraw-batch version 0.22.
Reference: http://stackoverflow.com/questions/3533 ... e-modified