Reputation: 1196
loc =d_path+"\\a"+m+"a"+".jpg";
Image image = Image.getInstance (loc);
I want to reduce image width. Could anyone help me out for the same?
Upvotes: 1
Views: 520
Reputation: 57381
Image has method
public Image getScaledInstance(int width, int height, int hints)
Upvotes: 3