2016-03-02 22:50:14 +03:00
|
|
|
import datetime
|
2019-07-06 23:40:53 +03:00
|
|
|
import os
|
|
|
|
from io import BytesIO
|
2012-10-16 00:26:38 +04:00
|
|
|
|
2017-01-28 23:04:49 +03:00
|
|
|
from PIL import Image, ImageMode
|
2014-06-10 13:10:47 +04:00
|
|
|
|
2019-07-06 23:40:53 +03:00
|
|
|
from .helper import PillowTestCase, hopper
|
2015-04-24 02:26:52 +03:00
|
|
|
|
2012-10-16 00:26:38 +04:00
|
|
|
try:
|
|
|
|
from PIL import ImageCms
|
2014-07-30 08:20:11 +04:00
|
|
|
from PIL.ImageCms import ImageCmsProfile
|
2019-06-13 18:54:46 +03:00
|
|
|
|
2014-04-04 03:04:29 +04:00
|
|
|
ImageCms.core.profile_open
|
2018-10-18 21:49:14 +03:00
|
|
|
except ImportError:
|
2014-06-10 13:10:47 +04:00
|
|
|
# Skipped via setUp()
|
|
|
|
pass
|
2014-06-02 14:19:01 +04:00
|
|
|
|
2013-10-12 10:39:16 +04:00
|
|
|
|
2014-09-25 08:25:42 +04:00
|
|
|
SRGB = "Tests/icc/sRGB_IEC61966-2-1_black_scaled.icc"
|
|
|
|
HAVE_PROFILE = os.path.exists(SRGB)
|
2013-10-12 10:39:16 +04:00
|
|
|
|
2015-04-24 02:26:52 +03:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
class TestImageCms(PillowTestCase):
|
|
|
|
def setUp(self):
|
|
|
|
try:
|
|
|
|
from PIL import ImageCms
|
2019-06-13 18:54:46 +03:00
|
|
|
|
2014-06-19 17:06:23 +04:00
|
|
|
# need to hit getattr to trigger the delayed import error
|
|
|
|
ImageCms.core.profile_open
|
2014-06-10 13:10:47 +04:00
|
|
|
except ImportError as v:
|
|
|
|
self.skipTest(v)
|
|
|
|
|
2014-09-25 08:25:42 +04:00
|
|
|
def skip_missing(self):
|
|
|
|
if not HAVE_PROFILE:
|
|
|
|
self.skipTest("SRGB profile not available")
|
2014-06-10 13:10:47 +04:00
|
|
|
|
2014-09-25 08:25:42 +04:00
|
|
|
def test_sanity(self):
|
2015-04-24 02:26:52 +03:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
# basic smoke test.
|
|
|
|
# this mostly follows the cms_test outline.
|
|
|
|
|
|
|
|
v = ImageCms.versions() # should return four strings
|
2019-06-13 18:54:46 +03:00
|
|
|
self.assertEqual(v[0], "1.0.0 pil")
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assertEqual(list(map(type, v)), [str, str, str, str])
|
|
|
|
|
|
|
|
# internal version number
|
2018-04-10 13:40:44 +03:00
|
|
|
self.assertRegex(ImageCms.core.littlecms_version, r"\d+\.\d+$")
|
2014-06-10 13:10:47 +04:00
|
|
|
|
2014-09-25 08:25:42 +04:00
|
|
|
self.skip_missing()
|
2014-09-14 23:58:23 +04:00
|
|
|
i = ImageCms.profileToProfile(hopper(), SRGB, SRGB)
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assert_image(i, "RGB", (128, 128))
|
|
|
|
|
2014-09-14 23:58:23 +04:00
|
|
|
i = hopper()
|
2014-06-10 13:10:47 +04:00
|
|
|
ImageCms.profileToProfile(i, SRGB, SRGB, inPlace=True)
|
|
|
|
self.assert_image(i, "RGB", (128, 128))
|
|
|
|
|
|
|
|
t = ImageCms.buildTransform(SRGB, SRGB, "RGB", "RGB")
|
2014-09-14 23:58:23 +04:00
|
|
|
i = ImageCms.applyTransform(hopper(), t)
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assert_image(i, "RGB", (128, 128))
|
|
|
|
|
Improve handling of file resources
Follow Python's file object semantics. User code is responsible for
closing resources (usually through a context manager) in a deterministic
way.
To achieve this, remove __del__ functions. These functions used to
closed open file handlers in an attempt to silence Python
ResourceWarnings. However, using __del__ has the following drawbacks:
- __del__ isn't called until the object's reference count reaches 0.
Therefore, resource handlers remain open or in use longer than
necessary.
- The __del__ method isn't guaranteed to execute on system exit. See the
Python documentation:
https://docs.python.org/3/reference/datamodel.html#object.__del__
> It is not guaranteed that __del__() methods are called for objects
> that still exist when the interpreter exits.
- Exceptions that occur inside __del__ are ignored instead of raised.
This has the potential of hiding bugs. This is also in the Python
documentation:
> Warning: Due to the precarious circumstances under which __del__()
> methods are invoked, exceptions that occur during their execution
> are ignored, and a warning is printed to sys.stderr instead.
Instead, always close resource handlers when they are no longer in use.
This will close the file handler at a specified point in the user's code
and not wait until the interpreter chooses to. It is always guaranteed
to run. And, if an exception occurs while closing the file handler, the
bug will not be ignored.
Now, when code receives a ResourceWarning, it will highlight an area
that is mishandling resources. It should not simply be silenced, but
fixed by closing resources with a context manager.
All warnings that were emitted during tests have been cleaned up. To
enable warnings, I passed the `-Wa` CLI option to Python. This exposed
some mishandling of resources in ImageFile.__init__() and
SpiderImagePlugin.loadImageSeries(), they too were fixed.
2019-05-25 19:30:58 +03:00
|
|
|
with hopper() as i:
|
|
|
|
t = ImageCms.buildTransform(SRGB, SRGB, "RGB", "RGB")
|
|
|
|
ImageCms.applyTransform(hopper(), t, inPlace=True)
|
|
|
|
self.assert_image(i, "RGB", (128, 128))
|
2014-06-10 13:10:47 +04:00
|
|
|
|
|
|
|
p = ImageCms.createProfile("sRGB")
|
|
|
|
o = ImageCms.getOpenProfile(SRGB)
|
|
|
|
t = ImageCms.buildTransformFromOpenProfiles(p, o, "RGB", "RGB")
|
2014-09-14 23:58:23 +04:00
|
|
|
i = ImageCms.applyTransform(hopper(), t)
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assert_image(i, "RGB", (128, 128))
|
|
|
|
|
|
|
|
t = ImageCms.buildProofTransform(SRGB, SRGB, SRGB, "RGB", "RGB")
|
|
|
|
self.assertEqual(t.inputMode, "RGB")
|
|
|
|
self.assertEqual(t.outputMode, "RGB")
|
2014-09-14 23:58:23 +04:00
|
|
|
i = ImageCms.applyTransform(hopper(), t)
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assert_image(i, "RGB", (128, 128))
|
|
|
|
|
|
|
|
# test PointTransform convenience API
|
2014-09-14 23:58:23 +04:00
|
|
|
hopper().point(t)
|
2014-06-10 13:10:47 +04:00
|
|
|
|
|
|
|
def test_name(self):
|
2014-09-25 08:25:42 +04:00
|
|
|
self.skip_missing()
|
2014-06-10 13:10:47 +04:00
|
|
|
# get profile information for file
|
|
|
|
self.assertEqual(
|
|
|
|
ImageCms.getProfileName(SRGB).strip(),
|
2019-06-13 18:54:46 +03:00
|
|
|
"IEC 61966-2-1 Default RGB Colour Space - sRGB",
|
|
|
|
)
|
2014-06-10 13:10:47 +04:00
|
|
|
|
|
|
|
def test_info(self):
|
2014-09-25 08:25:42 +04:00
|
|
|
self.skip_missing()
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assertEqual(
|
2019-06-13 18:54:46 +03:00
|
|
|
ImageCms.getProfileInfo(SRGB).splitlines(),
|
|
|
|
[
|
|
|
|
"sRGB IEC61966-2-1 black scaled",
|
|
|
|
"",
|
|
|
|
"Copyright International Color Consortium, 2009",
|
|
|
|
"",
|
|
|
|
],
|
|
|
|
)
|
2014-06-10 13:10:47 +04:00
|
|
|
|
|
|
|
def test_copyright(self):
|
2014-09-25 08:25:42 +04:00
|
|
|
self.skip_missing()
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assertEqual(
|
|
|
|
ImageCms.getProfileCopyright(SRGB).strip(),
|
2019-06-13 18:54:46 +03:00
|
|
|
"Copyright International Color Consortium, 2009",
|
|
|
|
)
|
2014-06-10 13:10:47 +04:00
|
|
|
|
|
|
|
def test_manufacturer(self):
|
2014-09-25 08:25:42 +04:00
|
|
|
self.skip_missing()
|
2019-06-13 18:54:46 +03:00
|
|
|
self.assertEqual(ImageCms.getProfileManufacturer(SRGB).strip(), "")
|
2014-06-10 13:10:47 +04:00
|
|
|
|
|
|
|
def test_model(self):
|
2014-09-25 08:25:42 +04:00
|
|
|
self.skip_missing()
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assertEqual(
|
|
|
|
ImageCms.getProfileModel(SRGB).strip(),
|
2019-06-13 18:54:46 +03:00
|
|
|
"IEC 61966-2-1 Default RGB Colour Space - sRGB",
|
|
|
|
)
|
2014-06-10 13:10:47 +04:00
|
|
|
|
|
|
|
def test_description(self):
|
2014-09-25 08:25:42 +04:00
|
|
|
self.skip_missing()
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assertEqual(
|
|
|
|
ImageCms.getProfileDescription(SRGB).strip(),
|
2019-06-13 18:54:46 +03:00
|
|
|
"sRGB IEC61966-2-1 black scaled",
|
|
|
|
)
|
2014-06-10 13:10:47 +04:00
|
|
|
|
|
|
|
def test_intent(self):
|
2014-09-25 08:25:42 +04:00
|
|
|
self.skip_missing()
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assertEqual(ImageCms.getDefaultIntent(SRGB), 0)
|
2019-06-13 18:54:46 +03:00
|
|
|
self.assertEqual(
|
|
|
|
ImageCms.isIntentSupported(
|
|
|
|
SRGB, ImageCms.INTENT_ABSOLUTE_COLORIMETRIC, ImageCms.DIRECTION_INPUT
|
|
|
|
),
|
|
|
|
1,
|
|
|
|
)
|
2014-06-10 13:10:47 +04:00
|
|
|
|
|
|
|
def test_profile_object(self):
|
|
|
|
# same, using profile object
|
|
|
|
p = ImageCms.createProfile("sRGB")
|
2019-06-13 18:54:46 +03:00
|
|
|
# self.assertEqual(ImageCms.getProfileName(p).strip(),
|
|
|
|
# 'sRGB built-in - (lcms internal)')
|
|
|
|
# self.assertEqual(ImageCms.getProfileInfo(p).splitlines(),
|
|
|
|
# ['sRGB built-in', '', 'WhitePoint : D65 (daylight)', '', ''])
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assertEqual(ImageCms.getDefaultIntent(p), 0)
|
2019-06-13 18:54:46 +03:00
|
|
|
self.assertEqual(
|
|
|
|
ImageCms.isIntentSupported(
|
|
|
|
p, ImageCms.INTENT_ABSOLUTE_COLORIMETRIC, ImageCms.DIRECTION_INPUT
|
|
|
|
),
|
|
|
|
1,
|
|
|
|
)
|
2014-06-10 13:10:47 +04:00
|
|
|
|
|
|
|
def test_extensions(self):
|
|
|
|
# extensions
|
2014-07-30 08:20:11 +04:00
|
|
|
|
Improve handling of file resources
Follow Python's file object semantics. User code is responsible for
closing resources (usually through a context manager) in a deterministic
way.
To achieve this, remove __del__ functions. These functions used to
closed open file handlers in an attempt to silence Python
ResourceWarnings. However, using __del__ has the following drawbacks:
- __del__ isn't called until the object's reference count reaches 0.
Therefore, resource handlers remain open or in use longer than
necessary.
- The __del__ method isn't guaranteed to execute on system exit. See the
Python documentation:
https://docs.python.org/3/reference/datamodel.html#object.__del__
> It is not guaranteed that __del__() methods are called for objects
> that still exist when the interpreter exits.
- Exceptions that occur inside __del__ are ignored instead of raised.
This has the potential of hiding bugs. This is also in the Python
documentation:
> Warning: Due to the precarious circumstances under which __del__()
> methods are invoked, exceptions that occur during their execution
> are ignored, and a warning is printed to sys.stderr instead.
Instead, always close resource handlers when they are no longer in use.
This will close the file handler at a specified point in the user's code
and not wait until the interpreter chooses to. It is always guaranteed
to run. And, if an exception occurs while closing the file handler, the
bug will not be ignored.
Now, when code receives a ResourceWarning, it will highlight an area
that is mishandling resources. It should not simply be silenced, but
fixed by closing resources with a context manager.
All warnings that were emitted during tests have been cleaned up. To
enable warnings, I passed the `-Wa` CLI option to Python. This exposed
some mishandling of resources in ImageFile.__init__() and
SpiderImagePlugin.loadImageSeries(), they too were fixed.
2019-05-25 19:30:58 +03:00
|
|
|
with Image.open("Tests/images/rgb.jpg") as i:
|
|
|
|
p = ImageCms.getOpenProfile(BytesIO(i.info["icc_profile"]))
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assertEqual(
|
|
|
|
ImageCms.getProfileName(p).strip(),
|
2019-06-13 18:54:46 +03:00
|
|
|
"IEC 61966-2.1 Default RGB colour space - sRGB",
|
|
|
|
)
|
2014-06-10 13:10:47 +04:00
|
|
|
|
|
|
|
def test_exceptions(self):
|
2017-09-01 13:36:51 +03:00
|
|
|
# Test mode mismatch
|
|
|
|
psRGB = ImageCms.createProfile("sRGB")
|
|
|
|
pLab = ImageCms.createProfile("LAB")
|
|
|
|
t = ImageCms.buildTransform(pLab, psRGB, "LAB", "RGB")
|
2017-09-01 14:05:40 +03:00
|
|
|
self.assertRaises(ValueError, t.apply_in_place, hopper("RGBA"))
|
2017-09-01 13:36:51 +03:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
# the procedural pyCMS API uses PyCMSError for all sorts of errors
|
Improve handling of file resources
Follow Python's file object semantics. User code is responsible for
closing resources (usually through a context manager) in a deterministic
way.
To achieve this, remove __del__ functions. These functions used to
closed open file handlers in an attempt to silence Python
ResourceWarnings. However, using __del__ has the following drawbacks:
- __del__ isn't called until the object's reference count reaches 0.
Therefore, resource handlers remain open or in use longer than
necessary.
- The __del__ method isn't guaranteed to execute on system exit. See the
Python documentation:
https://docs.python.org/3/reference/datamodel.html#object.__del__
> It is not guaranteed that __del__() methods are called for objects
> that still exist when the interpreter exits.
- Exceptions that occur inside __del__ are ignored instead of raised.
This has the potential of hiding bugs. This is also in the Python
documentation:
> Warning: Due to the precarious circumstances under which __del__()
> methods are invoked, exceptions that occur during their execution
> are ignored, and a warning is printed to sys.stderr instead.
Instead, always close resource handlers when they are no longer in use.
This will close the file handler at a specified point in the user's code
and not wait until the interpreter chooses to. It is always guaranteed
to run. And, if an exception occurs while closing the file handler, the
bug will not be ignored.
Now, when code receives a ResourceWarning, it will highlight an area
that is mishandling resources. It should not simply be silenced, but
fixed by closing resources with a context manager.
All warnings that were emitted during tests have been cleaned up. To
enable warnings, I passed the `-Wa` CLI option to Python. This exposed
some mishandling of resources in ImageFile.__init__() and
SpiderImagePlugin.loadImageSeries(), they too were fixed.
2019-05-25 19:30:58 +03:00
|
|
|
with hopper() as im:
|
|
|
|
self.assertRaises(
|
|
|
|
ImageCms.PyCMSError, ImageCms.profileToProfile, im, "foo", "bar"
|
|
|
|
)
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assertRaises(
|
2019-06-13 18:54:46 +03:00
|
|
|
ImageCms.PyCMSError, ImageCms.buildTransform, "foo", "bar", "RGB", "RGB"
|
|
|
|
)
|
|
|
|
self.assertRaises(ImageCms.PyCMSError, ImageCms.getProfileName, None)
|
2014-09-25 08:25:42 +04:00
|
|
|
self.skip_missing()
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assertRaises(
|
2019-06-13 18:54:46 +03:00
|
|
|
ImageCms.PyCMSError, ImageCms.isIntentSupported, SRGB, None, None
|
|
|
|
)
|
2014-06-10 13:10:47 +04:00
|
|
|
|
|
|
|
def test_display_profile(self):
|
|
|
|
# try fetching the profile for the current display device
|
|
|
|
ImageCms.get_display_profile()
|
|
|
|
|
|
|
|
def test_lab_color_profile(self):
|
|
|
|
ImageCms.createProfile("LAB", 5000)
|
|
|
|
ImageCms.createProfile("LAB", 6500)
|
|
|
|
|
2017-09-01 13:36:51 +03:00
|
|
|
def test_unsupported_color_space(self):
|
2019-06-13 18:54:46 +03:00
|
|
|
self.assertRaises(ImageCms.PyCMSError, ImageCms.createProfile, "unsupported")
|
2017-09-01 13:36:51 +03:00
|
|
|
|
|
|
|
def test_invalid_color_temperature(self):
|
2019-06-13 18:54:46 +03:00
|
|
|
self.assertRaises(ImageCms.PyCMSError, ImageCms.createProfile, "LAB", "invalid")
|
2017-09-01 13:36:51 +03:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
def test_simple_lab(self):
|
2019-06-13 18:54:46 +03:00
|
|
|
i = Image.new("RGB", (10, 10), (128, 128, 128))
|
2014-06-10 13:10:47 +04:00
|
|
|
|
2014-09-25 08:25:42 +04:00
|
|
|
psRGB = ImageCms.createProfile("sRGB")
|
2014-06-10 13:10:47 +04:00
|
|
|
pLab = ImageCms.createProfile("LAB")
|
2014-09-25 08:25:42 +04:00
|
|
|
t = ImageCms.buildTransform(psRGB, pLab, "RGB", "LAB")
|
2014-06-10 13:10:47 +04:00
|
|
|
|
|
|
|
i_lab = ImageCms.applyTransform(i, t)
|
|
|
|
|
2019-06-13 18:54:46 +03:00
|
|
|
self.assertEqual(i_lab.mode, "LAB")
|
2014-06-10 13:10:47 +04:00
|
|
|
|
|
|
|
k = i_lab.getpixel((0, 0))
|
|
|
|
# not a linear luminance map. so L != 128:
|
|
|
|
self.assertEqual(k, (137, 128, 128))
|
|
|
|
|
2018-06-15 16:44:22 +03:00
|
|
|
l_data = i_lab.getdata(0)
|
|
|
|
a_data = i_lab.getdata(1)
|
|
|
|
b_data = i_lab.getdata(2)
|
2014-06-10 13:10:47 +04:00
|
|
|
|
2018-06-15 16:44:22 +03:00
|
|
|
self.assertEqual(list(l_data), [137] * 100)
|
|
|
|
self.assertEqual(list(a_data), [128] * 100)
|
|
|
|
self.assertEqual(list(b_data), [128] * 100)
|
2014-06-10 13:10:47 +04:00
|
|
|
|
|
|
|
def test_lab_color(self):
|
2014-09-25 08:25:42 +04:00
|
|
|
psRGB = ImageCms.createProfile("sRGB")
|
2014-06-10 13:10:47 +04:00
|
|
|
pLab = ImageCms.createProfile("LAB")
|
2014-09-25 08:25:42 +04:00
|
|
|
t = ImageCms.buildTransform(psRGB, pLab, "RGB", "LAB")
|
2014-09-27 03:07:44 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
# Need to add a type mapping for some PIL type to TYPE_Lab_8 in
|
|
|
|
# findLCMSType, and have that mapping work back to a PIL mode
|
|
|
|
# (likely RGB).
|
2014-09-23 14:45:32 +04:00
|
|
|
i = ImageCms.applyTransform(hopper(), t)
|
2014-06-10 13:10:47 +04:00
|
|
|
self.assert_image(i, "LAB", (128, 128))
|
|
|
|
|
|
|
|
# i.save('temp.lab.tif') # visually verified vs PS.
|
|
|
|
|
2019-11-25 23:03:23 +03:00
|
|
|
with Image.open("Tests/images/hopper.Lab.tif") as target:
|
|
|
|
self.assert_image_similar(i, target, 3.5)
|
2014-06-10 13:10:47 +04:00
|
|
|
|
|
|
|
def test_lab_srgb(self):
|
2014-09-25 08:25:42 +04:00
|
|
|
psRGB = ImageCms.createProfile("sRGB")
|
2014-06-10 13:10:47 +04:00
|
|
|
pLab = ImageCms.createProfile("LAB")
|
2014-09-25 08:25:42 +04:00
|
|
|
t = ImageCms.buildTransform(pLab, psRGB, "LAB", "RGB")
|
2014-06-10 13:10:47 +04:00
|
|
|
|
2019-11-25 23:03:23 +03:00
|
|
|
with Image.open("Tests/images/hopper.Lab.tif") as img:
|
|
|
|
img_srgb = ImageCms.applyTransform(img, t)
|
2013-10-12 10:39:16 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
# img_srgb.save('temp.srgb.tif') # visually verified vs ps.
|
|
|
|
|
2014-09-23 14:45:32 +04:00
|
|
|
self.assert_image_similar(hopper(), img_srgb, 30)
|
2019-06-13 18:54:46 +03:00
|
|
|
self.assertTrue(img_srgb.info["icc_profile"])
|
2014-07-30 08:20:11 +04:00
|
|
|
|
2019-06-13 18:54:46 +03:00
|
|
|
profile = ImageCmsProfile(BytesIO(img_srgb.info["icc_profile"]))
|
|
|
|
self.assertIn("sRGB", ImageCms.getProfileDescription(profile))
|
2013-10-12 10:39:16 +04:00
|
|
|
|
2014-06-10 13:10:47 +04:00
|
|
|
def test_lab_roundtrip(self):
|
|
|
|
# check to see if we're at least internally consistent.
|
2014-09-25 08:25:42 +04:00
|
|
|
psRGB = ImageCms.createProfile("sRGB")
|
2014-06-10 13:10:47 +04:00
|
|
|
pLab = ImageCms.createProfile("LAB")
|
2014-09-25 08:25:42 +04:00
|
|
|
t = ImageCms.buildTransform(psRGB, pLab, "RGB", "LAB")
|
2014-06-02 13:41:48 +04:00
|
|
|
|
2014-09-25 08:25:42 +04:00
|
|
|
t2 = ImageCms.buildTransform(pLab, psRGB, "LAB", "RGB")
|
2013-10-12 10:39:16 +04:00
|
|
|
|
2014-09-14 23:58:23 +04:00
|
|
|
i = ImageCms.applyTransform(hopper(), t)
|
2014-07-30 08:20:11 +04:00
|
|
|
|
2019-06-13 18:54:46 +03:00
|
|
|
self.assertEqual(i.info["icc_profile"], ImageCmsProfile(pLab).tobytes())
|
2014-06-02 13:41:48 +04:00
|
|
|
|
2014-09-14 23:58:23 +04:00
|
|
|
out = ImageCms.applyTransform(i, t2)
|
2013-10-12 10:39:16 +04:00
|
|
|
|
2014-09-14 23:58:23 +04:00
|
|
|
self.assert_image_similar(hopper(), out, 2)
|
2013-10-12 10:39:16 +04:00
|
|
|
|
2014-07-30 07:44:17 +04:00
|
|
|
def test_profile_tobytes(self):
|
Improve handling of file resources
Follow Python's file object semantics. User code is responsible for
closing resources (usually through a context manager) in a deterministic
way.
To achieve this, remove __del__ functions. These functions used to
closed open file handlers in an attempt to silence Python
ResourceWarnings. However, using __del__ has the following drawbacks:
- __del__ isn't called until the object's reference count reaches 0.
Therefore, resource handlers remain open or in use longer than
necessary.
- The __del__ method isn't guaranteed to execute on system exit. See the
Python documentation:
https://docs.python.org/3/reference/datamodel.html#object.__del__
> It is not guaranteed that __del__() methods are called for objects
> that still exist when the interpreter exits.
- Exceptions that occur inside __del__ are ignored instead of raised.
This has the potential of hiding bugs. This is also in the Python
documentation:
> Warning: Due to the precarious circumstances under which __del__()
> methods are invoked, exceptions that occur during their execution
> are ignored, and a warning is printed to sys.stderr instead.
Instead, always close resource handlers when they are no longer in use.
This will close the file handler at a specified point in the user's code
and not wait until the interpreter chooses to. It is always guaranteed
to run. And, if an exception occurs while closing the file handler, the
bug will not be ignored.
Now, when code receives a ResourceWarning, it will highlight an area
that is mishandling resources. It should not simply be silenced, but
fixed by closing resources with a context manager.
All warnings that were emitted during tests have been cleaned up. To
enable warnings, I passed the `-Wa` CLI option to Python. This exposed
some mishandling of resources in ImageFile.__init__() and
SpiderImagePlugin.loadImageSeries(), they too were fixed.
2019-05-25 19:30:58 +03:00
|
|
|
with Image.open("Tests/images/rgb.jpg") as i:
|
|
|
|
p = ImageCms.getOpenProfile(BytesIO(i.info["icc_profile"]))
|
2014-07-30 07:44:17 +04:00
|
|
|
|
|
|
|
p2 = ImageCms.getOpenProfile(BytesIO(p.tobytes()))
|
|
|
|
|
|
|
|
# not the same bytes as the original icc_profile,
|
|
|
|
# but it does roundtrip
|
2014-09-14 23:58:23 +04:00
|
|
|
self.assertEqual(p.tobytes(), p2.tobytes())
|
2019-06-13 18:54:46 +03:00
|
|
|
self.assertEqual(ImageCms.getProfileName(p), ImageCms.getProfileName(p2))
|
|
|
|
self.assertEqual(
|
|
|
|
ImageCms.getProfileDescription(p), ImageCms.getProfileDescription(p2)
|
|
|
|
)
|
2014-07-30 07:44:17 +04:00
|
|
|
|
2016-03-02 22:50:14 +03:00
|
|
|
def test_extended_information(self):
|
2016-05-06 18:58:40 +03:00
|
|
|
self.skip_missing()
|
2016-03-02 22:50:14 +03:00
|
|
|
o = ImageCms.getOpenProfile(SRGB)
|
|
|
|
p = o.profile
|
|
|
|
|
2016-06-28 17:31:18 +03:00
|
|
|
def assert_truncated_tuple_equal(tup1, tup2, digits=10):
|
|
|
|
# Helper function to reduce precision of tuples of floats
|
|
|
|
# recursively and then check equality.
|
|
|
|
power = 10 ** digits
|
2016-09-03 05:17:22 +03:00
|
|
|
|
2016-06-28 17:31:18 +03:00
|
|
|
def truncate_tuple(tuple_or_float):
|
|
|
|
return tuple(
|
2019-06-13 18:54:46 +03:00
|
|
|
truncate_tuple(val)
|
|
|
|
if isinstance(val, tuple)
|
|
|
|
else int(val * power) / power
|
|
|
|
for val in tuple_or_float
|
|
|
|
)
|
|
|
|
|
2016-06-28 17:31:18 +03:00
|
|
|
self.assertEqual(truncate_tuple(tup1), truncate_tuple(tup2))
|
|
|
|
|
2016-03-02 22:50:14 +03:00
|
|
|
self.assertEqual(p.attributes, 4294967296)
|
2018-06-24 15:32:25 +03:00
|
|
|
assert_truncated_tuple_equal(
|
|
|
|
p.blue_colorant,
|
2019-06-13 18:54:46 +03:00
|
|
|
(
|
|
|
|
(0.14306640625, 0.06060791015625, 0.7140960693359375),
|
|
|
|
(0.1558847490315394, 0.06603820639433387, 0.06060791015625),
|
|
|
|
),
|
|
|
|
)
|
2018-06-24 15:32:25 +03:00
|
|
|
assert_truncated_tuple_equal(
|
|
|
|
p.blue_primary,
|
2019-06-13 18:54:46 +03:00
|
|
|
(
|
|
|
|
(0.14306641366715667, 0.06060790921083026, 0.7140960805782015),
|
|
|
|
(0.15588475410450106, 0.06603820408959558, 0.06060790921083026),
|
|
|
|
),
|
|
|
|
)
|
2018-10-24 22:24:03 +03:00
|
|
|
assert_truncated_tuple_equal(
|
|
|
|
p.chromatic_adaptation,
|
2019-06-13 18:54:46 +03:00
|
|
|
(
|
|
|
|
(
|
|
|
|
(1.04791259765625, 0.0229339599609375, -0.050201416015625),
|
|
|
|
(0.02960205078125, 0.9904632568359375, -0.0170745849609375),
|
|
|
|
(-0.009246826171875, 0.0150604248046875, 0.7517852783203125),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
(1.0267159024652783, 0.022470062342089134, 0.0229339599609375),
|
|
|
|
(0.02951378324103937, 0.9875098886387147, 0.9904632568359375),
|
|
|
|
(-0.012205438066465256, 0.01987915407854985, 0.0150604248046875),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
2017-06-03 07:04:54 +03:00
|
|
|
self.assertIsNone(p.chromaticity)
|
2019-06-13 18:54:46 +03:00
|
|
|
self.assertEqual(
|
|
|
|
p.clut,
|
|
|
|
{
|
|
|
|
0: (False, False, True),
|
|
|
|
1: (False, False, True),
|
|
|
|
2: (False, False, True),
|
|
|
|
3: (False, False, True),
|
|
|
|
},
|
|
|
|
)
|
2019-01-28 10:01:02 +03:00
|
|
|
|
2017-06-03 07:04:54 +03:00
|
|
|
self.assertIsNone(p.colorant_table)
|
|
|
|
self.assertIsNone(p.colorant_table_out)
|
|
|
|
self.assertIsNone(p.colorimetric_intent)
|
2019-06-13 18:54:46 +03:00
|
|
|
self.assertEqual(p.connection_space, "XYZ ")
|
|
|
|
self.assertEqual(p.copyright, "Copyright International Color Consortium, 2009")
|
|
|
|
self.assertEqual(p.creation_date, datetime.datetime(2009, 2, 27, 21, 36, 31))
|
|
|
|
self.assertEqual(p.device_class, "mntr")
|
2018-06-24 15:32:25 +03:00
|
|
|
assert_truncated_tuple_equal(
|
|
|
|
p.green_colorant,
|
2019-06-13 18:54:46 +03:00
|
|
|
(
|
|
|
|
(0.3851470947265625, 0.7168731689453125, 0.097076416015625),
|
|
|
|
(0.32119769927720654, 0.5978443449048152, 0.7168731689453125),
|
|
|
|
),
|
|
|
|
)
|
2018-06-24 15:32:25 +03:00
|
|
|
assert_truncated_tuple_equal(
|
|
|
|
p.green_primary,
|
2019-06-13 18:54:46 +03:00
|
|
|
(
|
|
|
|
(0.3851470888162112, 0.7168731974161346, 0.09707641738998518),
|
|
|
|
(0.32119768793686687, 0.5978443567149709, 0.7168731974161346),
|
|
|
|
),
|
|
|
|
)
|
2016-03-02 22:50:14 +03:00
|
|
|
self.assertEqual(p.header_flags, 0)
|
2019-06-13 18:54:46 +03:00
|
|
|
self.assertEqual(p.header_manufacturer, "\x00\x00\x00\x00")
|
|
|
|
self.assertEqual(p.header_model, "\x00\x00\x00\x00")
|
|
|
|
self.assertEqual(
|
|
|
|
p.icc_measurement_condition,
|
|
|
|
{
|
|
|
|
"backing": (0.0, 0.0, 0.0),
|
|
|
|
"flare": 0.0,
|
|
|
|
"geo": "unknown",
|
|
|
|
"observer": 1,
|
|
|
|
"illuminant_type": "D65",
|
|
|
|
},
|
|
|
|
)
|
2016-03-02 22:50:14 +03:00
|
|
|
self.assertEqual(p.icc_version, 33554432)
|
2017-06-03 07:04:54 +03:00
|
|
|
self.assertIsNone(p.icc_viewing_condition)
|
2019-06-13 18:54:46 +03:00
|
|
|
self.assertEqual(
|
|
|
|
p.intent_supported,
|
|
|
|
{
|
|
|
|
0: (True, True, True),
|
|
|
|
1: (True, True, True),
|
|
|
|
2: (True, True, True),
|
|
|
|
3: (True, True, True),
|
|
|
|
},
|
|
|
|
)
|
2017-06-03 07:04:54 +03:00
|
|
|
self.assertTrue(p.is_matrix_shaper)
|
2016-03-02 22:50:14 +03:00
|
|
|
self.assertEqual(p.luminance, ((0.0, 80.0, 0.0), (0.0, 1.0, 80.0)))
|
2017-06-03 07:04:54 +03:00
|
|
|
self.assertIsNone(p.manufacturer)
|
2018-06-24 15:32:25 +03:00
|
|
|
assert_truncated_tuple_equal(
|
|
|
|
p.media_black_point,
|
2019-06-13 18:54:46 +03:00
|
|
|
(
|
|
|
|
(0.012054443359375, 0.0124969482421875, 0.01031494140625),
|
|
|
|
(0.34573304157549234, 0.35842450765864337, 0.0124969482421875),
|
|
|
|
),
|
|
|
|
)
|
2018-06-24 15:32:25 +03:00
|
|
|
assert_truncated_tuple_equal(
|
|
|
|
p.media_white_point,
|
2019-06-13 18:54:46 +03:00
|
|
|
(
|
|
|
|
(0.964202880859375, 1.0, 0.8249053955078125),
|
|
|
|
(0.3457029219802284, 0.3585375327567059, 1.0),
|
|
|
|
),
|
|
|
|
)
|
2018-06-24 15:32:25 +03:00
|
|
|
assert_truncated_tuple_equal(
|
2019-06-13 18:54:46 +03:00
|
|
|
(p.media_white_point_temperature,), (5000.722328847392,)
|
|
|
|
)
|
|
|
|
self.assertEqual(p.model, "IEC 61966-2-1 Default RGB Colour Space - sRGB")
|
2019-01-28 10:01:02 +03:00
|
|
|
|
2019-01-28 14:59:53 +03:00
|
|
|
self.assertIsNone(p.perceptual_rendering_intent_gamut)
|
|
|
|
|
2019-06-13 18:54:46 +03:00
|
|
|
self.assertEqual(p.profile_description, "sRGB IEC61966-2-1 black scaled")
|
|
|
|
self.assertEqual(p.profile_id, b")\xf8=\xde\xaf\xf2U\xaexB\xfa\xe4\xca\x839\r")
|
2019-01-28 14:59:53 +03:00
|
|
|
assert_truncated_tuple_equal(
|
|
|
|
p.red_colorant,
|
2019-06-13 18:54:46 +03:00
|
|
|
(
|
|
|
|
(0.436065673828125, 0.2224884033203125, 0.013916015625),
|
|
|
|
(0.6484536316398539, 0.3308524880306778, 0.2224884033203125),
|
|
|
|
),
|
|
|
|
)
|
2019-01-28 14:59:53 +03:00
|
|
|
assert_truncated_tuple_equal(
|
|
|
|
p.red_primary,
|
2019-06-13 18:54:46 +03:00
|
|
|
(
|
|
|
|
(0.43606566581047446, 0.22248840582960838, 0.013916015621759925),
|
|
|
|
(0.6484536250319214, 0.3308524944738204, 0.22248840582960838),
|
|
|
|
),
|
|
|
|
)
|
2019-01-28 14:59:53 +03:00
|
|
|
self.assertEqual(p.rendering_intent, 0)
|
|
|
|
self.assertIsNone(p.saturation_rendering_intent_gamut)
|
|
|
|
self.assertIsNone(p.screening_description)
|
|
|
|
self.assertIsNone(p.target)
|
2019-06-13 18:54:46 +03:00
|
|
|
self.assertEqual(p.technology, "CRT ")
|
2019-01-28 14:59:53 +03:00
|
|
|
self.assertEqual(p.version, 2.0)
|
2019-06-13 18:54:46 +03:00
|
|
|
self.assertEqual(
|
|
|
|
p.viewing_condition, "Reference Viewing Condition in IEC 61966-2-1"
|
|
|
|
)
|
|
|
|
self.assertEqual(p.xcolor_space, "RGB ")
|
2019-01-28 14:59:53 +03:00
|
|
|
|
|
|
|
def test_deprecations(self):
|
|
|
|
self.skip_missing()
|
|
|
|
o = ImageCms.getOpenProfile(SRGB)
|
|
|
|
p = o.profile
|
|
|
|
|
2019-01-28 15:10:37 +03:00
|
|
|
def helper_deprecated(attr, expected):
|
|
|
|
result = self.assert_warning(DeprecationWarning, getattr, p, attr)
|
|
|
|
self.assertEqual(result, expected)
|
|
|
|
|
2019-01-28 14:59:53 +03:00
|
|
|
# p.color_space
|
2019-01-28 15:10:37 +03:00
|
|
|
helper_deprecated("color_space", "RGB")
|
2019-01-28 14:59:53 +03:00
|
|
|
|
2019-01-28 10:01:02 +03:00
|
|
|
# p.pcs
|
2019-01-28 15:10:37 +03:00
|
|
|
helper_deprecated("pcs", "XYZ")
|
2019-01-28 12:16:55 +03:00
|
|
|
|
|
|
|
# p.product_copyright
|
2019-01-28 15:10:37 +03:00
|
|
|
helper_deprecated(
|
|
|
|
"product_copyright", "Copyright International Color Consortium, 2009"
|
2019-01-28 12:16:55 +03:00
|
|
|
)
|
|
|
|
|
2019-01-28 12:57:41 +03:00
|
|
|
# p.product_desc
|
2019-01-28 15:10:37 +03:00
|
|
|
helper_deprecated("product_desc", "sRGB IEC61966-2-1 black scaled")
|
2019-01-28 12:57:41 +03:00
|
|
|
|
|
|
|
# p.product_description
|
2019-01-28 15:10:37 +03:00
|
|
|
helper_deprecated("product_description", "sRGB IEC61966-2-1 black scaled")
|
2019-01-28 12:10:38 +03:00
|
|
|
|
|
|
|
# p.product_manufacturer
|
2019-01-28 15:10:37 +03:00
|
|
|
helper_deprecated("product_manufacturer", "")
|
2019-01-28 11:37:56 +03:00
|
|
|
|
|
|
|
# p.product_model
|
2019-01-28 15:10:37 +03:00
|
|
|
helper_deprecated(
|
|
|
|
"product_model", "IEC 61966-2-1 Default RGB Colour Space - sRGB"
|
|
|
|
)
|
2019-01-28 11:37:56 +03:00
|
|
|
|
2016-09-26 16:14:01 +03:00
|
|
|
def test_profile_typesafety(self):
|
|
|
|
""" Profile init type safety
|
|
|
|
|
|
|
|
prepatch, these would segfault, postpatch they should emit a typeerror
|
|
|
|
"""
|
2016-12-07 04:39:36 +03:00
|
|
|
|
2016-09-26 16:14:01 +03:00
|
|
|
with self.assertRaises(TypeError):
|
|
|
|
ImageCms.ImageCmsProfile(0).tobytes()
|
|
|
|
with self.assertRaises(TypeError):
|
|
|
|
ImageCms.ImageCmsProfile(1).tobytes()
|
2016-12-07 04:39:36 +03:00
|
|
|
|
2019-06-13 18:54:46 +03:00
|
|
|
def assert_aux_channel_preserved(self, mode, transform_in_place, preserved_channel):
|
2017-01-28 23:04:49 +03:00
|
|
|
def create_test_image():
|
2019-06-13 18:54:46 +03:00
|
|
|
# set up test image with something interesting in the tested aux channel.
|
|
|
|
# fmt: off
|
|
|
|
nine_grid_deltas = [ # noqa: E131
|
2017-01-28 23:04:49 +03:00
|
|
|
(-1, -1), (-1, 0), (-1, 1),
|
2018-10-24 19:00:19 +03:00
|
|
|
(0, -1), (0, 0), (0, 1),
|
|
|
|
(1, -1), (1, 0), (1, 1),
|
2017-01-28 23:04:49 +03:00
|
|
|
]
|
2019-06-13 18:54:46 +03:00
|
|
|
# fmt: on
|
2017-01-28 23:04:49 +03:00
|
|
|
chans = []
|
|
|
|
bands = ImageMode.getmode(mode).bands
|
2017-03-03 13:05:41 +03:00
|
|
|
for band_ndx in range(len(bands)):
|
2019-06-13 18:54:46 +03:00
|
|
|
channel_type = "L" # 8-bit unorm
|
2017-01-28 23:04:49 +03:00
|
|
|
channel_pattern = hopper(channel_type)
|
|
|
|
|
|
|
|
# paste pattern with varying offsets to avoid correlation
|
|
|
|
# potentially hiding some bugs (like channels getting mixed).
|
|
|
|
paste_offset = (
|
|
|
|
int(band_ndx / float(len(bands)) * channel_pattern.size[0]),
|
2019-06-13 18:54:46 +03:00
|
|
|
int(band_ndx / float(len(bands) * 2) * channel_pattern.size[1]),
|
2017-01-28 23:04:49 +03:00
|
|
|
)
|
|
|
|
channel_data = Image.new(channel_type, channel_pattern.size)
|
|
|
|
for delta in nine_grid_deltas:
|
2018-10-24 22:24:03 +03:00
|
|
|
channel_data.paste(
|
|
|
|
channel_pattern,
|
2019-06-13 18:54:46 +03:00
|
|
|
tuple(
|
|
|
|
paste_offset[c] + delta[c] * channel_pattern.size[c]
|
|
|
|
for c in range(2)
|
|
|
|
),
|
2018-10-24 22:24:03 +03:00
|
|
|
)
|
2017-01-28 23:04:49 +03:00
|
|
|
chans.append(channel_data)
|
|
|
|
return Image.merge(mode, chans)
|
|
|
|
|
|
|
|
source_image = create_test_image()
|
2017-08-09 02:36:07 +03:00
|
|
|
source_image_aux = source_image.getchannel(preserved_channel)
|
2017-01-28 23:04:49 +03:00
|
|
|
|
|
|
|
# create some transform, it doesn't matter which one
|
|
|
|
source_profile = ImageCms.createProfile("sRGB")
|
|
|
|
destination_profile = ImageCms.createProfile("sRGB")
|
2018-06-24 15:32:25 +03:00
|
|
|
t = ImageCms.buildTransform(
|
2019-06-13 18:54:46 +03:00
|
|
|
source_profile, destination_profile, inMode=mode, outMode=mode
|
|
|
|
)
|
2017-01-28 23:04:49 +03:00
|
|
|
|
|
|
|
# apply transform
|
|
|
|
if transform_in_place:
|
|
|
|
ImageCms.applyTransform(source_image, t, inPlace=True)
|
|
|
|
result_image = source_image
|
|
|
|
else:
|
2019-06-13 18:54:46 +03:00
|
|
|
result_image = ImageCms.applyTransform(source_image, t, inPlace=False)
|
2017-08-09 02:36:07 +03:00
|
|
|
result_image_aux = result_image.getchannel(preserved_channel)
|
2017-01-28 23:04:49 +03:00
|
|
|
|
|
|
|
self.assert_image_equal(source_image_aux, result_image_aux)
|
|
|
|
|
|
|
|
def test_preserve_auxiliary_channels_rgba(self):
|
2018-09-27 13:14:22 +03:00
|
|
|
self.assert_aux_channel_preserved(
|
2019-06-13 18:54:46 +03:00
|
|
|
mode="RGBA", transform_in_place=False, preserved_channel="A"
|
|
|
|
)
|
2017-01-28 23:04:49 +03:00
|
|
|
|
|
|
|
def test_preserve_auxiliary_channels_rgba_in_place(self):
|
2018-09-27 13:14:22 +03:00
|
|
|
self.assert_aux_channel_preserved(
|
2019-06-13 18:54:46 +03:00
|
|
|
mode="RGBA", transform_in_place=True, preserved_channel="A"
|
|
|
|
)
|
2017-01-28 23:04:49 +03:00
|
|
|
|
|
|
|
def test_preserve_auxiliary_channels_rgbx(self):
|
2018-09-27 13:14:22 +03:00
|
|
|
self.assert_aux_channel_preserved(
|
2019-06-13 18:54:46 +03:00
|
|
|
mode="RGBX", transform_in_place=False, preserved_channel="X"
|
|
|
|
)
|
2017-01-28 23:04:49 +03:00
|
|
|
|
|
|
|
def test_preserve_auxiliary_channels_rgbx_in_place(self):
|
2018-09-27 13:14:22 +03:00
|
|
|
self.assert_aux_channel_preserved(
|
2019-06-13 18:54:46 +03:00
|
|
|
mode="RGBX", transform_in_place=True, preserved_channel="X"
|
|
|
|
)
|
2017-01-28 23:04:49 +03:00
|
|
|
|
|
|
|
def test_auxiliary_channels_isolated(self):
|
|
|
|
# test data in aux channels does not affect non-aux channels
|
|
|
|
aux_channel_formats = [
|
|
|
|
# format, profile, color-only format, source test image
|
2019-06-13 18:54:46 +03:00
|
|
|
("RGBA", "sRGB", "RGB", hopper("RGBA")),
|
|
|
|
("RGBX", "sRGB", "RGB", hopper("RGBX")),
|
|
|
|
("LAB", "LAB", "LAB", Image.open("Tests/images/hopper.Lab.tif")),
|
2017-01-28 23:04:49 +03:00
|
|
|
]
|
|
|
|
for src_format in aux_channel_formats:
|
|
|
|
for dst_format in aux_channel_formats:
|
|
|
|
for transform_in_place in [True, False]:
|
|
|
|
# inplace only if format doesn't change
|
|
|
|
if transform_in_place and src_format[0] != dst_format[0]:
|
|
|
|
continue
|
|
|
|
|
|
|
|
# convert with and without AUX data, test colors are equal
|
|
|
|
source_profile = ImageCms.createProfile(src_format[1])
|
|
|
|
destination_profile = ImageCms.createProfile(dst_format[1])
|
|
|
|
source_image = src_format[3]
|
2018-06-24 15:32:25 +03:00
|
|
|
test_transform = ImageCms.buildTransform(
|
2019-06-13 18:54:46 +03:00
|
|
|
source_profile,
|
|
|
|
destination_profile,
|
|
|
|
inMode=src_format[0],
|
|
|
|
outMode=dst_format[0],
|
|
|
|
)
|
2017-01-28 23:04:49 +03:00
|
|
|
|
|
|
|
# test conversion from aux-ful source
|
|
|
|
if transform_in_place:
|
|
|
|
test_image = source_image.copy()
|
2018-06-24 15:32:25 +03:00
|
|
|
ImageCms.applyTransform(
|
2019-06-13 18:54:46 +03:00
|
|
|
test_image, test_transform, inPlace=True
|
|
|
|
)
|
2017-01-28 23:04:49 +03:00
|
|
|
else:
|
2018-06-24 15:32:25 +03:00
|
|
|
test_image = ImageCms.applyTransform(
|
2019-06-13 18:54:46 +03:00
|
|
|
source_image, test_transform, inPlace=False
|
|
|
|
)
|
2017-01-28 23:04:49 +03:00
|
|
|
|
|
|
|
# reference conversion from aux-less source
|
2018-06-24 15:32:25 +03:00
|
|
|
reference_transform = ImageCms.buildTransform(
|
2019-06-13 18:54:46 +03:00
|
|
|
source_profile,
|
|
|
|
destination_profile,
|
|
|
|
inMode=src_format[2],
|
|
|
|
outMode=dst_format[2],
|
|
|
|
)
|
2018-06-24 15:32:25 +03:00
|
|
|
reference_image = ImageCms.applyTransform(
|
2019-06-13 18:54:46 +03:00
|
|
|
source_image.convert(src_format[2]), reference_transform
|
|
|
|
)
|
2018-06-24 15:32:25 +03:00
|
|
|
|
2019-06-13 18:54:46 +03:00
|
|
|
self.assert_image_equal(
|
|
|
|
test_image.convert(dst_format[2]), reference_image
|
|
|
|
)
|