web-dev-qa-db-ja.com

Javaの複数の画像から1つのGif画像を作成する方法はありますか?

他の複数の画像(jpg)から1つのアニメーションgifを作成する簡単なJavaプログラムをセットアップしようとしています。Javaでこれを実現する方法について誰かに教えてもらえますか?すでに検索しましたグーグルが本当に役立つものを見つけることができませんでした。

君たちありがとう!

19
user2399314

以下に、さまざまな画像からアニメーションgifを作成するクラスの例を示します。

リンク

クラスはこれらのメソッドを提供します:

class GifSequenceWriter {
    public GifSequenceWriter(
        ImageOutputStream outputStream,
        int imageType,
        int timeBetweenFramesMS,
        boolean loopContinuously);

    public void writeToSequence(RenderedImage img);

    public void close();
}

また、小さな例:

public static void main(String[] args) throws Exception {
  if (args.length > 1) {
    // grab the output image type from the first image in the sequence
    BufferedImage firstImage = ImageIO.read(new File(args[0]));

    // create a new BufferedOutputStream with the last argument
    ImageOutputStream output = 
      new FileImageOutputStream(new File(args[args.length - 1]));

    // create a gif sequence with the type of the first image, 1 second
    // between frames, which loops continuously
    GifSequenceWriter writer = 
      new GifSequenceWriter(output, firstImage.getType(), 1, false);

    // write out the first image to our sequence...
    writer.writeToSequence(firstImage);
    for(int i=1; i<args.length-1; i++) {
      BufferedImage nextImage = ImageIO.read(new File(args[i]));
      writer.writeToSequence(nextImage);
    }

    writer.close();
    output.close();
  } else {
    System.out.println(
      "Usage: Java GifSequenceWriter [list of gif files] [output file]");
  }
}

このコードの Elliot Kroo の小道具。

28
aran