about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pydicom/pillow-10.1.0-compat.patch
blob: 2599f955f7ddcf3b0c9135069961967bf6d06c50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
diff --git a/pydicom/pixel_data_handlers/pillow_handler.py b/pydicom/pixel_data_handlers/pillow_handler.py
index ff781025d..a44eb9a41 100644
--- a/pydicom/pixel_data_handlers/pillow_handler.py
+++ b/pydicom/pixel_data_handlers/pillow_handler.py
@@ -119,18 +119,12 @@ def _decompress_single_frame(
     # space prior to compression, setting the value of "mode" to YCbCr
     # signals Pillow to not apply any color transformation upon
     # decompression.
-    if (transfer_syntax in PillowJPEGTransferSyntaxes and
-            photometric_interpretation == 'RGB'):
-        if 'adobe_transform' not in image.info:
-            color_mode = 'YCbCr'
-            image.tile = [(
-                'jpeg',
-                image.tile[0][1],
-                image.tile[0][2],
-                (color_mode, ''),
-            )]
-            image.mode = color_mode
-            image.rawmode = color_mode
+    if (
+        transfer_syntax in PillowJPEGTransferSyntaxes
+        and photometric_interpretation == 'RGB'
+        and "adobe_transform" not in image.info
+    ):
+        image.draft("YCbCr", image.size)
     return image