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 <xakepa10@gmail.com>
This commit is contained in:
Ivailo Monev 2022-10-26 07:57:42 +03:00
parent e400b6841e
commit d33233d7ab

View file

@ -299,7 +299,9 @@ QList<QByteArray> JP2Plugin::mimeTypes() const
{
static const QList<QByteArray> list = QList<QByteArray>()
<< "image/jp2"
<< "image/x-jp2-codestream";
<< "image/x-jp2-codestream"
<< "image/jpx"
<< "image/jpm";
return list;
}