There are many libraries available for image processing for example here you will find a library for resizing, here's another powerful program for image processing. The usage of libraries may depend on your need. I'll give you some simple things. The easiest way to convert a color image to a gray scale image is to simply draw the color image to a gray scale BufferedImage. Code sample is below
BufferedImage image = new BufferedImage(width, height,
BufferedImage.TYPE_BYTE_GRAY);
Graphics g = image.getGraphics();
g.drawImage(colorImage, 0, 0, null);
g.dispose();
There are many such examples available to you if you just search for it.
One of the book I referred for learning about images and graphics is here. It is basically a rich client development tutorial. I would recommend you to go through this textbook. The first few chapters there will definitely give you some basics. AlphaComposite is again one of the useful class. These things are very interesting with the above mentioned book.