]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Mon, 30 Jan 2012 16:51:12 +0000 (16:51 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Mon, 30 Jan 2012 16:51:12 +0000 (16:51 +0000)
MagickCore/coder.c
coders/dng.c

index 051b218b0be94bf964959854fe688e6203ca930c..565e21a18b70109e24e7ef20d8961ef82b3128f4 100644 (file)
@@ -158,6 +158,7 @@ static const CoderMapInfo
     { "MP4", "MPEG" },
     { "MPG", "MPEG" },
     { "MPRI", "MPR" },
+    { "MEF", "DNG" },
     { "MRW", "DNG" },
     { "MSVG", "SVG" },
     { "NEF", "DNG" },
index c78bf0f10c699d51978b3fdfcd400120a37553c3..2be5f619a2c7fa770cd7ad93d5cf9eb926c16731 100644 (file)
@@ -312,6 +312,14 @@ ModuleExport size_t RegisterDNGImage(void)
   entry->description=ConstantString("Kodak Digital Camera Raw Image Format");
   entry->module=ConstantString("DNG");
   (void) RegisterMagickInfo(entry);
+  entry=SetMagickInfo("MEF");
+  entry->decoder=(DecodeImageHandler *) ReadDNGImage;
+  entry->blob_support=MagickFalse;
+  entry->seekable_stream=MagickTrue;
+  entry->format_type=ExplicitFormatType;
+  entry->description=ConstantString("Mamiya Raw Image File");
+  entry->module=ConstantString("DNG");
+  (void) RegisterMagickInfo(entry);
   entry=SetMagickInfo("MRW");
   entry->decoder=(DecodeImageHandler *) ReadDNGImage;
   entry->blob_support=MagickFalse;