
Showing posts with label exiftool. Show all posts
Showing posts with label exiftool. Show all posts
Monday, 27 April 2026
Lazy tooling: Magick Image Annotations
Preparing various images of different sizes for a standardised dsiplay can be hugely time consuming and manual. How can we be lazy about this?


Tuesday, 12 January 2021
Windows drag n drop Batch Image Metadata Updates
Batch modifying the
With Windows, there exists a neat tick with batch files that you can drag and drop files onto batch file under Windows explorer and the batch file will accept them as arguments. For example, to set the lens information on any
exif metadata on your images (NEF, DNGs, jpegs ....) in Windows can be a little painful. Exiftool is a great tool that can perform the metadata updates but most would associate this with command line updates.With Windows, there exists a neat tick with batch files that you can drag and drop files onto batch file under Windows explorer and the batch file will accept them as arguments. For example, to set the lens information on any
exiftool support file, create the following .bat file and then drag and drop your files!
@echo off
FOR %%i IN (%*) DO exiftool -overwrite_original -Lens="Nikkor 20mm f/3.5 AI" -MaxApertureValue="3.5" -FocalLength="20" %%i
pause
Sunday, 10 March 2019
An easy way to remove duplicate files
After years of backing up files from various harddrives and various folders into new harddrivers and additional various folders, we inevitably get a duplicate music, video and photo files - here are 2 tools that can help clean up:
fdupes and exiftoolFriday, 11 February 2011
Embedded in RAW
One of the most common debates (ignoring brand wars) in the hobbyist/amateur camera world is whether one should shoot RAW or jpeg (or RAW/jpeg with varying degrees of jpeg quality). For me the decision is easy: shoot RAW.

Subscribe to:
Posts (Atom)