mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-06-09 23:53:17 +03:00
Merge pull request #3549 from radarhere/mimetype
Improved get_format_mimetype logic
This commit is contained in:
commit
58e60510e6
|
@ -120,9 +120,10 @@ class ImageFile(Image.Image):
|
||||||
pass
|
pass
|
||||||
|
|
||||||
def get_format_mimetype(self):
|
def get_format_mimetype(self):
|
||||||
if self.format is None:
|
if self.custom_mimetype:
|
||||||
return
|
return self.custom_mimetype
|
||||||
return self.custom_mimetype or Image.MIME.get(self.format.upper())
|
if self.format is not None:
|
||||||
|
return Image.MIME.get(self.format.upper())
|
||||||
|
|
||||||
def verify(self):
|
def verify(self):
|
||||||
"""Check file integrity"""
|
"""Check file integrity"""
|
||||||
|
|
Loading…
Reference in New Issue
Block a user