]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Tue, 10 Jun 2014 10:14:59 +0000 (10:14 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Tue, 10 Jun 2014 10:14:59 +0000 (10:14 +0000)
MagickCore/coder.c
coders/dng.c

index c34b728a622bc71fd699919fd6ccacb619fe1a2a..e42c06821fa1e575480ce6d41c066b1eb36a905f 100644 (file)
@@ -196,6 +196,7 @@ static const CoderMapInfo
     { "RADIAL-GRADIENT", "GRADIENT" },
     { "RAF", "DNG" },
     { "RAS", "SUN" },
+    { "RAW", "DNG" },
     { "RGBA", "RGB" },
     { "RGBO", "RGB" },
     { "RMF", "DNG" },
index 247a19c1df7d682f61141ad3886ab3cb60c85e5b..63d2b101f3f4d07b93e92871c2c5034d7c96bfbc 100644 (file)
@@ -368,6 +368,14 @@ ModuleExport size_t RegisterDNGImage(void)
   entry->description=ConstantString("Fuji CCD-RAW Graphic File");
   entry->module=ConstantString("DNG");
   (void) RegisterMagickInfo(entry);
+  entry=SetMagickInfo("RAW");
+  entry->decoder=(DecodeImageHandler *) ReadDNGImage;
+  entry->blob_support=MagickFalse;
+  entry->seekable_stream=MagickTrue;
+  entry->format_type=ExplicitFormatType;
+  entry->description=ConstantString("Raw");
+  entry->module=ConstantString("DNG");
+  (void) RegisterMagickInfo(entry);
   entry=SetMagickInfo("RMF");
   entry->decoder=(DecodeImageHandler *) ReadDNGImage;
   entry->blob_support=MagickFalse;