ImageHelperEnsureImageDimensions Method (Int32, Int32, Int32, Int32, Int32) |
Computes new image dimensions according to the specified parameters, and returns it.
Namespace: CMS.HelpersAssembly: CMS.Helpers (in CMS.Helpers.dll) Version: 13.0.131
Syntax public static int[] EnsureImageDimensions(
int width,
int height,
int maxSideSize,
int imageWidth,
int imageHeight
)
Parameters
- width
- Type: SystemInt32
Required image width (optional) - height
- Type: SystemInt32
Required image height (optional) - maxSideSize
- Type: SystemInt32
Required max image size (overrides both required width and height, optional) - imageWidth
- Type: SystemInt32
Image width (required) - imageHeight
- Type: SystemInt32
Image height (required)
Return Value
Type:
Int32An array with computed width ([0]) and height ([1])
Remarks
This method prevents image enlargement.
Both image width and image height must be positive integers, otherwise specified image dimensions are returned.
Specified image dimensions are also returned when neither width, height or maxSideSize is a positive integer.
See Also