mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-12-27 10:26:19 +03:00
Image._dump: Rewrite for clarity and type-safety.
This commit is contained in:
parent
ab6c60da1c
commit
72b3e6819d
18
PIL/Image.py
18
PIL/Image.py
|
@ -583,21 +583,27 @@ class Image(object):
|
|||
|
||||
def _dump(self, file=None, format=None, **options):
|
||||
import tempfile
|
||||
|
||||
suffix = ''
|
||||
if format:
|
||||
suffix = '.'+format
|
||||
|
||||
if not file:
|
||||
f, file = tempfile.mkstemp(suffix)
|
||||
f, filename = tempfile.mkstemp(suffix)
|
||||
os.close(f)
|
||||
else:
|
||||
filename = file
|
||||
if not filename.endswith(suffix):
|
||||
filename = filename + suffix
|
||||
|
||||
self.load()
|
||||
|
||||
if not format or format == "PPM":
|
||||
self.im.save_ppm(file)
|
||||
self.im.save_ppm(filename)
|
||||
else:
|
||||
if not file.endswith(format):
|
||||
file = file + "." + format
|
||||
self.save(file, format, **options)
|
||||
return file
|
||||
self.save(filename, format, **options)
|
||||
|
||||
return filename
|
||||
|
||||
def __eq__(self, other):
|
||||
return (self.__class__.__name__ == other.__class__.__name__ and
|
||||
|
|
Loading…
Reference in New Issue
Block a user