NeedsPlanarConfigTransform Property (ICompressor)
In This Topic
Lets a caller to Compress tell whether data needs to be transformed before compression. It is only relevent if the image has a Planar Configuration value (0028,0006) of 1.
If this property is true, then the compressor expects data in "by pixel" mode, irrespective of the stated Planar Configuration, so DicomObjects will apply a suitable transformation pre-compression.
If this property is false, then the compressor can use data in the original form as stated by the Planar Configuration, so pre-compression transformation is not necessary.
Syntax
'Declaration
ReadOnly Property NeedsPlanarConfigTransform As System.Boolean
'Usage
Dim instance As ICompressor
Dim value As System.Boolean
value = instance.NeedsPlanarConfigTransform
System.bool NeedsPlanarConfigTransform {get;}
read-only property NeedsPlanarConfigTransform: System.Boolean;
function get NeedsPlanarConfigTransform : System.boolean
__property System.bool get_NeedsPlanarConfigTransform();
property System.bool NeedsPlanarConfigTransform {
System.bool get();
}
Requirements
Target Platforms: .NET CLR 4.8 or higher
See Also