Javascript – checking image size before upload

image processingjavascript

I noticed when uploading a profile pic to Twitter that its size is checked before upload. Can anyone point me to a solution like this?

Thanks

Best Answer

If you're checking the file size you can use something like uploadify to check the file size before upload.

Checking the actual file dimensions (height / width) may need to be done on the server.

Related Topic