mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-06-05 21:53:15 +03:00
Renamed _get_local_header to _write_local_header
This commit is contained in:
parent
ab7e07c54d
commit
46287eb62a
|
@ -318,7 +318,7 @@ def _write_single_frame(im, fp, palette):
|
||||||
flags = 0
|
flags = 0
|
||||||
if get_interlace(im):
|
if get_interlace(im):
|
||||||
flags = flags | 64
|
flags = flags | 64
|
||||||
_get_local_header(fp, im, (0, 0), flags)
|
_write_local_header(fp, im, (0, 0), flags)
|
||||||
|
|
||||||
im_out.encoderconfig = (8, get_interlace(im))
|
im_out.encoderconfig = (8, get_interlace(im))
|
||||||
ImageFile._save(im_out, fp, [("gif", (0, 0)+im.size, 0,
|
ImageFile._save(im_out, fp, [("gif", (0, 0)+im.size, 0,
|
||||||
|
@ -417,7 +417,7 @@ def get_interlace(im):
|
||||||
return interlace
|
return interlace
|
||||||
|
|
||||||
|
|
||||||
def _get_local_header(fp, im, offset, flags):
|
def _write_local_header(fp, im, offset, flags):
|
||||||
transparent_color_exists = False
|
transparent_color_exists = False
|
||||||
try:
|
try:
|
||||||
transparency = im.encoderinfo["transparency"]
|
transparency = im.encoderinfo["transparency"]
|
||||||
|
@ -707,7 +707,7 @@ def _write_frame_data(fp, im_frame, offset, params):
|
||||||
im_frame.encoderinfo = params
|
im_frame.encoderinfo = params
|
||||||
|
|
||||||
# local image header
|
# local image header
|
||||||
_get_local_header(fp, im_frame, offset, 0)
|
_write_local_header(fp, im_frame, offset, 0)
|
||||||
|
|
||||||
ImageFile._save(im_frame, fp, [("gif", (0, 0)+im_frame.size, 0,
|
ImageFile._save(im_frame, fp, [("gif", (0, 0)+im_frame.size, 0,
|
||||||
RAWMODE[im_frame.mode])])
|
RAWMODE[im_frame.mode])])
|
||||||
|
|
Loading…
Reference in New Issue
Block a user