mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-07-01 18:33:05 +03:00
imagefile flags added
This commit is contained in:
parent
f18d64c267
commit
4f31cd7a31
|
@ -6,6 +6,7 @@ from PIL import Image
|
||||||
from PIL import PdfParser
|
from PIL import PdfParser
|
||||||
from PIL import ImageCms
|
from PIL import ImageCms
|
||||||
from PIL import McIdasImagePlugin
|
from PIL import McIdasImagePlugin
|
||||||
|
from PIL import ImageFile
|
||||||
|
|
||||||
pytest_plugins = ["Tests.helper"]
|
pytest_plugins = ["Tests.helper"]
|
||||||
|
|
||||||
|
@ -16,6 +17,7 @@ def calculate_coverage(test_name):
|
||||||
"branches2": PdfParser.XrefTable.branches,
|
"branches2": PdfParser.XrefTable.branches,
|
||||||
"branches3": ImageCms.ImageCmsProfile.branches,
|
"branches3": ImageCms.ImageCmsProfile.branches,
|
||||||
"branches4": McIdasImagePlugin.McIdasImageFile.branches,
|
"branches4": McIdasImagePlugin.McIdasImageFile.branches,
|
||||||
|
"branches5": ImageFile.PyEncoder.branches,
|
||||||
# Add more
|
# Add more
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -39,6 +39,11 @@ from . import Image
|
||||||
from ._deprecate import deprecate
|
from ._deprecate import deprecate
|
||||||
from ._util import is_path
|
from ._util import is_path
|
||||||
|
|
||||||
|
branches = {
|
||||||
|
"1": False,
|
||||||
|
"2": False,
|
||||||
|
}
|
||||||
|
|
||||||
MAXBLOCK = 65536
|
MAXBLOCK = 65536
|
||||||
|
|
||||||
SAFEBLOCK = 1024 * 1024
|
SAFEBLOCK = 1024 * 1024
|
||||||
|
@ -750,6 +755,11 @@ class PyDecoder(PyCodec):
|
||||||
|
|
||||||
|
|
||||||
class PyEncoder(PyCodec):
|
class PyEncoder(PyCodec):
|
||||||
|
|
||||||
|
branches = {
|
||||||
|
"1": False,
|
||||||
|
"2": False,
|
||||||
|
}
|
||||||
"""
|
"""
|
||||||
Python implementation of a format encoder. Override this class and
|
Python implementation of a format encoder. Override this class and
|
||||||
add the decoding logic in the :meth:`encode` method.
|
add the decoding logic in the :meth:`encode` method.
|
||||||
|
@ -801,7 +811,9 @@ class PyEncoder(PyCodec):
|
||||||
"""
|
"""
|
||||||
errcode = 0
|
errcode = 0
|
||||||
while errcode == 0:
|
while errcode == 0:
|
||||||
|
PyEncoder.branches["1"] = True
|
||||||
status, errcode, buf = self.encode(bufsize)
|
status, errcode, buf = self.encode(bufsize)
|
||||||
if status > 0:
|
if status > 0:
|
||||||
|
PyEncoder.branches["2"] = True
|
||||||
fh.write(buf[status:])
|
fh.write(buf[status:])
|
||||||
return errcode
|
return errcode
|
||||||
|
|
Loading…
Reference in New Issue
Block a user