function Leadtools.Controls.Medical.DICOMImageInformation.resize( resizeFactor )
Parameter | Type | Description |
---|---|---|
resizeFactor | int | The factor that determines the amount to resize the DICOMImageInformation. |
Type | Description |
---|---|
DICOMImageInformation | A new DICOMImageInformation based on the specified resize factor. |
The resizeFactor indicates the amount the width or height will be bit shifted to the right.
The available values are:Value | Description |
---|---|
0 | A resizeFactor of 0 indicates that the image won't be resized. |
1 | The new image size will be (Width >> 1 or Width / 2) (Height >> 1 or Height / 2). |
2 | The new image size will be (Width >> 2 or Width / 4) (Height >> 2 or Height / 4). |