ImageHelperGetResizedImageData Method (HttpPostedFile, Int32, Int32, Int32) |
If posted file is image, resizes it to the required dimensions if possible and returns resized data. If it is not image, original data are returned.
Namespace: CMS.HelpersAssembly: CMS.Helpers (in CMS.Helpers.dll) Version: 10.0.0
Syntax public static byte[] GetResizedImageData(
HttpPostedFile postedFile,
int width,
int height,
int maxSideSize
)
Parameters
- postedFile
- Type: System.WebHttpPostedFile
Posted file data - width
- Type: SystemInt32
Image required width - height
- Type: SystemInt32
Image required height - maxSideSize
- Type: SystemInt32
Image required max side size
Return Value
Type:
ByteSee Also