diff servlet/src/digilib/image/ImageLoaderDocuImage.java @ 543:919e008ab1fb digilibPDF

more steps towards more standard java.util.concurrent design
author robcast
date Thu, 14 Oct 2010 14:24:33 +0200
parents e758a49258e8
children 5ff500d6812a
line wrap: on
line diff
--- a/servlet/src/digilib/image/ImageLoaderDocuImage.java	Wed Oct 13 18:40:54 2010 +0200
+++ b/servlet/src/digilib/image/ImageLoaderDocuImage.java	Thu Oct 14 14:24:33 2010 +0200
@@ -179,6 +179,7 @@
 			if (img == null) {
 				throw new FileOpException("Unable to load File!");
 			}
+            mimeType = f.getMimetype();
 		} catch (IOException e) {
 			throw new FileOpException("Error reading image.");
 		}
@@ -236,6 +237,7 @@
 			// read image
 			logger.debug("loading..");
 			img = reader.read(0, readParam);
+			mimeType = f.getMimetype();
 			logger.debug("loaded");
 		} catch (IOException e) {
 			throw new FileOpException("Unable to load File!");