1
Reply

I need code for checking image dimensions when i upload image? it need to check minimum, maximum values when i upload a image? can u ppl help me this is urgent issue so plz.

Haritha Naga

Haritha Naga

12y
661
0
Reply

    Can u check the width and height properties of uploaded image. Like followsSystem.Drawing.Image image = System.Drawing.Image.FromFile(fileupload.fileName);int ActualWidth = image.Width;int ActualHeight = image.Height;