if ("image".equals(typeName)) {
/** If this column type is an image, store the
size, width, and height in a static table **/
Parameters parameters = new Parameters();
parameters.setParameter("image-size", Long.toString(file.length()));
ImageProperties prop = ImageUtils.getImageProperties(file);
parameters.setParameter("image-width", Integer.toString(prop.width));
parameters.setParameter("image-height", Integer.toString(prop.height));
// TC: if it's really mime-type shouldn't we prepend "image/"?
parameters.setParameter("image-mime-type",prop.type);
synchronized (this.files) {