if (szPath.endsWith("jpg") || szPath.endsWith("jpeg")) { //$NON-NLS-1$ //$NON-NLS-2$
format = Bitmap.CompressFormat.JPEG;
} else if (szPath.endsWith("png")) { //$NON-NLS-1$
format = Bitmap.CompressFormat.PNG;
}
bmp.compress(format, nQuality, os);
} finally {
os.close();
}
}
}