Jhausler
Established
Any ImageMagick users out there?
I recently started "scanning" negatives with an M9 and wanted an easy way to invert the files before importing into LR.
I know I can just invert the Tone Curve, but then everything is backwards and my brain can't handle that 🙂
I wrote up a super simple script to run on a folder full of DNGs:
for i in *.DNG; do convert -negate ${i%.*}.DNG ${i%.*}.tif; done
I did this because apparently while IM can read DNG files, it cannot write them.
It seems to work well. I intend to dump the DNGs and just keep the TIFs. I have the negatives, so it's not as if i'm deleting the "originals".
Here come the questions...
I'll probably come up with more, but this is a good start to see if there are any IM users out there.
Thanks,
Jesse
I recently started "scanning" negatives with an M9 and wanted an easy way to invert the files before importing into LR.
I know I can just invert the Tone Curve, but then everything is backwards and my brain can't handle that 🙂
I wrote up a super simple script to run on a folder full of DNGs:
for i in *.DNG; do convert -negate ${i%.*}.DNG ${i%.*}.tif; done
I did this because apparently while IM can read DNG files, it cannot write them.
It seems to work well. I intend to dump the DNGs and just keep the TIFs. I have the negatives, so it's not as if i'm deleting the "originals".
Here come the questions...
1) Am I losing any data through this conversion?
2) The DNG files start at around 36.4mb but the TIF files are all close to 90mb. Is there any way to trim these without losing any data?
2) The DNG files start at around 36.4mb but the TIF files are all close to 90mb. Is there any way to trim these without losing any data?
I'll probably come up with more, but this is a good start to see if there are any IM users out there.
Thanks,
Jesse