list all PIL supported mime types

Signed-off-by: Michele Dolfi <dol@zurich.ibm.com>
This commit is contained in:
Michele Dolfi 2024-10-10 18:28:56 +02:00
parent bde8186700
commit a84ba6ddec

View File

@ -33,7 +33,13 @@ FormatToMimeType = {
"application/vnd.openxmlformats-officedocument.presentationml.presentation"
},
InputFormat.HTML: {"text/html", "application/xhtml+xml"},
InputFormat.IMAGE: {"image/png", "image/jpeg"},
InputFormat.IMAGE: {
"image/png",
"image/jpeg",
"image/tiff",
"image/gif",
"image/bmp",
},
InputFormat.PDF: {"application/pdf"},
}
MimeTypeToFormat = {