From d33233d7ab0ae7e74d4ed440e8b0cb9dd6b648c1 Mon Sep 17 00:00:00 2001 From: Ivailo Monev Date: Wed, 26 Oct 2022 07:57:42 +0300 Subject: [PATCH] kimgio: add image/jpx and image/jpm to the jp2 plugin MIME types list note to self: same header/magic as the one mentioned in RFC 3745 Signed-off-by: Ivailo Monev --- kimgio/jp2.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/kimgio/jp2.cpp b/kimgio/jp2.cpp index 166c6a50..a68748f9 100644 --- a/kimgio/jp2.cpp +++ b/kimgio/jp2.cpp @@ -299,7 +299,9 @@ QList JP2Plugin::mimeTypes() const { static const QList list = QList() << "image/jp2" - << "image/x-jp2-codestream"; + << "image/x-jp2-codestream" + << "image/jpx" + << "image/jpm"; return list; }