@@ -567,7 +567,7 @@ def encode_array(
567
567
568
568
569
569
def encode_buffer (
570
- src : Union [ bytes , bytearray ] ,
570
+ src : bytes ,
571
571
columns : int ,
572
572
rows : int ,
573
573
samples_per_pixel : int ,
@@ -609,7 +609,7 @@ def encode_buffer(
609
609
610
610
Parameters
611
611
----------
612
- src : bytes | bytearray
612
+ src : bytes
613
613
A single frame of little endian, colour-by-pixel ordered image data to
614
614
be JPEG 2000 encoded. Each pixel should be encoded using the following
615
615
(each pixel has 1 or more samples):
@@ -712,16 +712,14 @@ def encode_buffer(
712
712
return cast (bytes , buffer )
713
713
714
714
715
- def encode_pixel_data (
716
- src : Union [bytes , bytearray ], ** kwargs : Any
717
- ) -> bytes :
715
+ def encode_pixel_data (src : bytes , ** kwargs : Any ) -> bytes :
718
716
"""Return the JPEG 2000 compressed `src`.
719
717
720
718
.. versionadded:: 2.2
721
719
722
720
Parameters
723
721
----------
724
- src : bytes | bytearray
722
+ src : bytes
725
723
A single frame of little endian, colour-by-pixel ordered image data to
726
724
be JPEG2000 encoded. Each pixel should be encoded using the following:
727
725
@@ -743,7 +741,7 @@ def encode_pixel_data(
743
741
744
742
* ``'use_mct'``: bool: ``True`` to use MCT with RGB images (default)
745
743
``False`` otherwise. Will be ignored if `photometric_interpretation`
746
- is not RGB, YBR_RCT or YBR_ICT.
744
+ is not YBR_RCT or YBR_ICT.
747
745
* ''`compression_ratios'``: list[float] - required for lossy encoding if
748
746
`signal_noise_ratios` is not used. The desired compression ratio to
749
747
use for each quality layer.
@@ -759,7 +757,7 @@ def encode_pixel_data(
759
757
# A J2K codestream doesn't track the colour space, so the photometric
760
758
# interpretation is only used to help with setting MCT
761
759
pi = kwargs ["photometric_interpretation" ]
762
- if pi in ("RGB" , " YBR_ICT" , "YBR_RCT" ):
760
+ if pi in ("YBR_ICT" , "YBR_RCT" ):
763
761
kwargs ["photometric_interpretation" ] = 1
764
762
else :
765
763
kwargs ["photometric_interpretation" ] = 0
0 commit comments