I have an upload control for uploading the images to the server, but before uploading I just want to make sure if the images are of correct dimensions. Is there anything on client side that can be done with javascript?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
You could check them before submitting form:
This only works on modern browsers so you still have to check the dimensions on server side. You also can't trust the client so that's another reason you must check them server side anyway. |
|||
|
|
|
Yes, HTML5 API supports this.
DEMO (tested on chrome) |
||||
|
Give this a shot. I've used this in the past. https://github.com/valums/file-uploader |
||||
|
|
