guys just now i downloaded the ImageJ Jar. Completely new to it. I tried flipping/rotating the image. The program is executing but no changes are being reflected to the image. My code is ---
import ij.ImagePlus;
import ij.process.ImageProcessor;
public class ImageProcessing{
public static void main(String arg[]){
ImagePlus imp= new ImagePlus("images/Koala.jpg");
ImageProcessor ip=imp.getProcessor();
try{ip.rotateLeft();}catch(Exception e){
e.printStackTrace();
}
imp.updateAndDraw();
}
}
Stuck since an hour, kindly help guys... thanks in advance..!