/* (non-Javadoc)
* @see org.jresearch.gossip.actions.user.avatar.SaveAvatarAction#getImage(org.apache.struts.action.ActionForm)
*/
protected BufferedImage getImage(ActionForm form) throws SystemException {
LoadAvatarForm laForm=(LoadAvatarForm) form;
BufferedImage img=null;
try {
img = ImageIO.read(new URL(laForm.getUrl()));
} catch (MalformedURLException e) {
throw new SystemException(e);
} catch (IOException e) {
throw new SystemException(e);
}