On Eclipse, I've been getting this error that the method getScaledInstan ce is undefined for type String, but I'm not using Strings, rather 3 ints. Any idea on how to remove this error?
Image pic2 = pic.getScaledIn stance(640, 480, Image.SCALE_SMO OTH);
**EDIT** NVM, dumb mistake.
Image pic2 = pic.getScaledIn stance(640, 480, Image.SCALE_SMO OTH);
**EDIT** NVM, dumb mistake.
Comment