Click or drag to resize
ImageHelper.GetResizedImageData 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.Helpers
Assembly: CMS.Helpers (in CMS.Helpers.dll) Version: 10.0.0
Syntax
C#
public static byte[] GetResizedImageData(
	HttpPostedFile postedFile,
	int width,
	int height,
	int maxSideSize
)

Parameters

postedFile
Type: System.Web.HttpPostedFile
Posted file data
width
Type: System.Int32
Image required width
height
Type: System.Int32
Image required height
maxSideSize
Type: System.Int32
Image required max side size

Return Value

Type:Byte[]
See Also