diff --git a/src/highdicom/legacy/sop.py b/src/highdicom/legacy/sop.py index b592e019..0fce9418 100644 --- a/src/highdicom/legacy/sop.py +++ b/src/highdicom/legacy/sop.py @@ -189,7 +189,10 @@ def _convert_legacy_to_enhanced( unique_image_types.add(tuple(frame_type)) frame_type_item = Dataset() frame_type_item.FrameType = frame_type - frame_type_item.PixelRepresentation = pixel_representation + if pixel_representation == 0: + frame_type_item.PixelPresentation = 'MONOCHROME' + else: + frame_type_item.PixelPresentation = 'COLOR' frame_type_item.VolumetricProperties = volumetric_properties if frame_type[0] == 'ORIGINAL': frame_type_item.VolumeBasedCalculationTechnique = 'NONE'