Showing posts with label collections. Show all posts
Showing posts with label collections. Show all posts

Saturday, 20 June 2009

Thermal Label Printer

I've just taken delivery of a Dymo LabelWriter 400 printer - mostly to help me make sense of the mountains of "stuff" that I seem to own and carry around with me.

Installation is very easy, and the printer functions like any other MacOS printer, albeit with very small paper sizes!

My thoughts are already beginning to turn to investigating the some of the possible applications that the printer might have for photography and collections management.

Here is what I've come up with so far:
  • Temporary (?) labelling - label output is quick, easy and cheap. I can already think of one job I will be doing next month where the ability to spew out the numbers of the last batch of photos onto a batch of labels would probably make for less confusion later on in the process. The technology is thermal printing, and whilst we know that the labels won't be archival, I feel that they would make a very good stop-gap measure until there is time to do a proper marking exercise.
  • Machine readable labels - a little pet favourite of mine - bridging the interface between objects and computers. I've already been able to successfully output Code 128 barcodes onto the labels, using an open-source barcode generator outputting data from a PHP/MySQL database. And my twenty-quid barcode reader reads them perfectly as well.
  • I've run-off a few sample labels and will be using them to label up some of my own geological specimens, and as time passes, I'll report more on how it all pans out.

Friday, 23 January 2009

Crafty concordances, clever computer....

A reasonably common museum problem. Several hundred museum objects to be photographed, one set of old museum numbers, one set of new ones, and then after generating a set of camera numbers, we were to rename the camera files to some name relating to the new museum numbers.

How to make a concordance between the four sets of numbers - ordinarily I do this by hand as I photograph, but as soon as I renumbered the images, the original concordance we made on site became useless.

The solution required that we maintain a record of the original filename against the new renumbered file. I could have used paper, or even a spreadsheet, but that would have been quite time consuming and probably error prone.

I felt it could be done using IPTC data mixed in with my workflow, so here's how:

  • I used a piece of software called Exiftool
  • First, copy the original camera assigned file name into the caption field:
exiftool "-iptc:caption-abstract<filename" *.jpg
  • Bring the photos into iPhoto. It reads the caption field into it's description field
  • Tweak photos as required, changing the title of the photo to the new museum number, and setting the old museum number as one of the keywords.
Incidentally, at this point everything suddenly started to organise itself, as disconnected photos taken all around the museum began to re-arrange themselves by their museum numbers....
  • Export new versions of the photos, using your preferred settings. Ensure that you also export title and keywords, and use the title to generate the filename:


  • Finally head back to Exiftool and run the following command which gives you the concordance list that you were after
exiftool -T -filename -keywords -objectname -iptc:caption-abstract *jpg

which looks like

73606.jpg 23.3 73606 _DSC4876.jpg
73607.jpg 23.4 73607 _DSC4880.jpg
73608.jpg 23.5 73608 _DSC4882.jpg
73609.jpg 23.6 73609 _DSC4878.jpg
73610.jpg 23.7 73610 _DSC4881.jpg etc

  • Open the file in a spreadsheet of your choice, sort as required and carry on!