From 7fee329aec1090ff832c1b07fc4cc70c3b604f65 Mon Sep 17 00:00:00 2001 From: glennrp Date: Fri, 9 Aug 2013 15:25:52 +0000 Subject: [PATCH] Changed mime type for MNG from image/png to image/x-mng and JNG to image/x-jng --- coders/png.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/coders/png.c b/coders/png.c index e45ab5e87..8b55d2558 100644 --- a/coders/png.c +++ b/coders/png.c @@ -7496,7 +7496,7 @@ ModuleExport size_t RegisterPNGImage(void) if (*version != '\0') entry->version=ConstantString(version); - entry->mime_type=ConstantString("image/png"); + entry->mime_type=ConstantString("image/x-mng"); entry->module=ConstantString("PNG"); entry->note=ConstantString(MNGNote); (void) RegisterMagickInfo(entry); @@ -7633,7 +7633,7 @@ ModuleExport size_t RegisterPNGImage(void) entry->magick=(IsImageFormatHandler *) IsJNG; entry->adjoin=MagickFalse; entry->description=ConstantString("JPEG Network Graphics"); - entry->mime_type=ConstantString("image/png"); + entry->mime_type=ConstantString("image/x-jng"); entry->module=ConstantString("PNG"); entry->note=ConstantString(JNGNote); (void) RegisterMagickInfo(entry); -- 2.40.0