ok
resize the image is done
but wenn i display it in jsp
-- my.jsp
[code]
<%
String _img = "home.jpg";
Image newIMG=
Toolkit.getDefaultToolkit().getImage(_img).getScaledInstance(150,150,Image.SCALE_FAST);
%>
<body>
<tr><td><img src='<%=newIMG>'></td></tr>
</body>
but the displayed with old size
what is wrong
regards
ok resize the image is done but wenn i display it in jsp -- my.jsp <%
String _img = "home.jpg";
Image newIMG=
Toolkit.getDefaultToolkit().getImage(_img).getScaledInstance(150,150,Image.SCALE_FAST);
%>
<body>
<tr><td><img src='<%=newIMG>'></td></tr>
</body>
but the displayed with old size
what is wrong
regards