|
jhuperetes -> RE: photo management (10/11/2009 5:20:18 PM)
|
I do digital photography as a hobby and I organize my photos by year, month, and if necessary subject. I usually take about a thousand shots a month. In general, most digital cameras nowadays insert something called EXIF information into the image. Besides a slew of photographic information, it also contains creation date. You can rename the images to match the creation date contained within the EXIF information, then move it through batch command (like FOR %A IN...) into appropriate directories, or use a tool to move them directly, based on the EXIF data. (The free software IrfanView comes to mind for both cases.) My directory structure looks something like this: \2006\01\ \2006\02\ \2006\03\special event\ ... \2006\12\ \2007\01\ \2007\02\ \2007\03\ ... \2007\12\ \2008\01\ ... and so on. I often duplicate my images too. Using IrfanView's rename feature, I also include a sequence number. If a picture has identical EXIF creation date, then they are duplicates. In the process of renaming, IrfanView would label them sequentially, following the creation date and time. Example: 20091001145212001.jpg 20091001145212002.jpg 20091001145212003.jpg yyyymmddhhmmss then 3 digit sequence.
|
|
|
|