Possible Duplicate:
Resize an image in Java - Any Open Source Library ?
InputStream is = new FileInputStream(file);
long length = file.length();
// if (length > Integer.MAX_VALUE) {
// File is too large
// }
byte[] bytes = new byte[(int) length];
if i enter large image....it should accept but size should be reduced