请问怎样实现图片的反色显示,旋转,剪切??

解决方案 »

  1.   

    反相:BufferedImage image;......short[] invert = new short[256];
    for (int i = 0; i < 256; i++)
    invert[i] = (short)(255 - i);
    BufferedImageOp iOp = new LookupOp(new ShortLookupTable(0, invert), null);
    ImageIO.write(iOp.filter(image, null), "jpg", new File("testOp.jpg"));旋转g2.translate(0,0);//设置旋转的中心点
    g2.rotate((45*java.lang.Math.PI)/180);//设置旋转的角度
    剪切不知道你要在什么地方这么做,简单的可以直接bufferedImage.getSubimage
      

  2.   

    用sun公司的java advanced imaging,高效,开源。
    可以到以下url下载:
    java advanced imaging:http://java.sun.com/products/java-media/jai/downloads/download-1_1_2_01.html
    以下两个是本人以前用jai编写的例程序:旋转的例程:
         import java.awt.Frame;
         import java.awt.image.renderable.ParameterBlock;
         import java.io.IOException;
         import javax.media.jai.*;
        
         import com.sun.media.jai.codec.FileSeekableStream;
         import javax.media.jai.widget.ScrollingImagePanel;
         /**
          * This program decodes an image file of any JAI supported
          * formats, such as GIF, JPEG, TIFF, BMP, PNM, PNG, into a
          * RenderedImage, scales the image by 2X with bilinear
          * interpolation, and then displays the result of the scale
          * operation.
          */
         public class JAISampleProgramRotate{         /** The main method. */
             public static void main(String[] args) {
                 /* Validate input. */
                 if (args.length != 1) {
                     System.out.println("Usage: java JAISampleProgram " +
                                        "input_image_filename");
                     System.exit(-1);
                 }             /*
                  * Create an input stream from the specified file name
                  * to be used with the file decoding operator.
                  */
                 FileSeekableStream stream = null;
                 try {
                     stream = new FileSeekableStream(args[0]);
                 } catch (IOException e) {
                     e.printStackTrace();
                     System.exit(0);
                 }             /* Create an operator to decode the image file. */
                 RenderedOp image = JAI.create("stream", stream);
                 /*
                  * Create a standard bilinear interpolation object to be
                  * used with the "scale" operator.
                  */
                 Interpolation interp = Interpolation.getInstance(
                                            Interpolation.INTERP_BILINEAR);
         int value = 45;
         float angle = (float)(value * (Math.PI/180.0F));     // Create a ParameterBlock and specify the source and
         // parameters
         ParameterBlock pb = new ParameterBlock();
              pb.addSource(image);                   // The source image//******************replace im with image****************
              pb.add(0.0F);                       // The x origin
              pb.add(0.0F);                       // The y origin
              pb.add(angle);                      // The rotation angle
              pb.add(new InterpolationNearest()); // The interpolation      
         // Create the scale operation
         RenderedOp  im = JAI.create("Rotate", pb, null);//**************************************************create an instance im of type RenderedOp********//-----------------------------------add the other operator sample code here-------------------------           
                 /* Get the width and height of image2. */
                 int width = im.getWidth();
                 int height = im.getHeight();             /* Attach image2 to a scrolling panel to be displayed. */
                 ScrollingImagePanel panel = new ScrollingImagePanel(im, width, height);             /* Create a frame to contain the panel. */
                 Frame window = new Frame("JAI Sample Program");
                 window.add(panel);
                 window.pack();
                 window.show();
             }
         }
      

  3.   

    使用方法:
    javac    JAISampleProgramRotate.java
    java  JAISampleProgramRotate a.jpga.jpg是楼主要旋转的jpg文件