You can't check that a submitted file is an image format at the client side, because the client side has no access to read the file.(*) That's why the plugin doesn't offer such a feature.
The only reliable check you can do on a file upload field to to check that its value
is not an empty string (no file selected). Whilst you might be tempted to guess whether a file is an image by looking at the filename (eg. does it end in ‘.gif’, ‘.png’, ‘.jpeg’ or ‘.jpg’), this is unreliable as depending on the operating system and filetype configuration settings a file extension may well not bear any relation to the type of file.
(*: Except in Firefox 3 using the FileList interface.)