Auto_avatar_resizer

Upload the files to the appropriate folders on your server

Go to administration - system - infusions and install auto_avatar_resizer

Apply the following changes to these files:
(Do backup your files before changing them !)

edit_profile.php:

Find:

echo "<tr>\n";
	echo "<td valign='top' class='tbl'>".$locale['u010'].":</td>\n";
	echo "<td class='tbl'><input type='file' name='user_avatar' class='textbox' style='width:200px;' /><br />\n";
	echo "<span class='small2'>".$locale['u011']."</span><br />\n";
	echo "<span class='small2'>".sprintf($locale['u012'], parsebytesize(30720), 100, 100)."</span></td>\n";
	echo "</tr>\n";
} else {
	echo "<tr>\n";
	echo "<td valign='top' class='tbl'>".$locale['u010'].":</td>\n";
	echo "<td class='tbl'><img src='".IMAGES."avatars/".$user_data['user_avatar']."' alt='".$locale['u010']."' /><br />\n";
	echo "<input type='checkbox' name='del_avatar' value='y' /> ".$locale['u013']."\n";
	echo "<input type='hidden' name='user_avatar' value='".$user_data['user_avatar']."' /></td>\n";
	echo "</tr>\n";

Replace with:

echo "<tr>\n";
        echo "<td valign='top' class='tbl'><a name='no2'></a>".$locale['u010']." resizer:</td>\n";
        echo "<td class='tbl'><span class='small2'><a href='".BASEDIR."infusions/auto_avatar_resizer_infusion/auto_avatar_resizer.php' target='_self'><img border='0'               style='vertical-align:middle' src='images/picture_go.png'>  Upload Avatar</a> / Resizer automatically.<br /> 
              (Animated gif files, use the following)</span><br></td>\n";
        echo "</tr>\n";

	echo "<tr>\n";
	echo "<td valign='top' class='tbl'>".$locale['u010'].":</td>\n";
	echo "<td class='tbl'><input type='file' name='user_avatar' class='textbox' style='width:200px;' /><br />\n";
	echo "<span class='small2'>".$locale['u011']."</span><br />\n";
	echo "<span class='small2'>".sprintf($locale['u012'], parsebytesize(30720), 100, 100)."</span></td>\n";
	echo "</tr>\n";
} else {
	echo "<tr>\n";
	echo "<td valign='top' class='tbl'>".$locale['u010'].":</td>\n";
	echo "<td class='tbl'><img src='".IMAGES."avatars/".$user_data['user_avatar']."' alt='".$locale['u010']."' /><br />\n";
	echo "<input type='checkbox' name='del_avatar' value='y' /> ".$locale['u013']."\n";
	echo "<input type='hidden' name='user_avatar' value='".$user_data['user_avatar']."' /></td>\n";
	echo "</tr>\n";



Done !