For each image (and you must do both the same to keep proportion):
GreenfootImage[] images = { image1, image2 };
int scalePct = 50; // half sizing (50%)
for (GreenfootImage img : images) img.scale(img.getWidth()*scalePct/100, img.getHeight()*scalePct/100);
