hi, I have a class which crops and saves an image and I have a multiple image jquery uploader using the HttpFileCollection class.
During the iteration loop I want to be able to access the width and height of the image for my class.
With a singular fileupload control it is easy because there is a fileupload.filecontents which can be used to create a new bitmap.
However, with the HttpFileCollection there is only HttpPostedFile which doesn't appear to have the same ability.
Does anyone have any ideas about how to solve this?
thanks
Andy