From 4f04fa641aa886f95d604bf8d65c6ba141d61bb1 Mon Sep 17 00:00:00 2001 From: jmillman Date: Thu, 30 Jul 2015 13:19:58 -0400 Subject: [PATCH] add mimetypes that are supported but seam to be missing from the ones reported. --- Core/src/org/sleuthkit/autopsy/coreutils/ImageUtils.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Core/src/org/sleuthkit/autopsy/coreutils/ImageUtils.java b/Core/src/org/sleuthkit/autopsy/coreutils/ImageUtils.java index 7e6fc57304..0e05ee0001 100755 --- a/Core/src/org/sleuthkit/autopsy/coreutils/ImageUtils.java +++ b/Core/src/org/sleuthkit/autopsy/coreutils/ImageUtils.java @@ -118,6 +118,8 @@ public class ImageUtils { SUPPORTED_IMAGE_MIME_TYPES.addAll(Arrays.asList( "image/x-rgb", "image/x-ms-bmp", + "image/x-portable-graymap", + "image/x-portable-bitmap", "application/x-123")); SUPPORTED_IMAGE_MIME_TYPES.removeIf("application/octet-stream"::equals); }