如何将多个图像输入流传递给im4java?

the*_*1st 5 java imagemagick im4java

我正在使用imagemagick构建一个具有多个图层的PSD.这适用于我使用CLI命令convert 1.png 1.png 2.png test.psd.(额外的1.png是因为PSD的第一层是所有层的展平结果)

我想使用im4java,而不是实际将图像保存到磁盘(使用InputStream).使用InputStream初始化的输入管道应该可以实现.但是,它只对我有一个输入图像.如果我有几个,我不知道如何将它们全部作为进程'stdin的输入传递.

我尝试使用连接我的图像输入流java.io.SequenceInputStream,但这导致错误:

org.im4java.core.CommandException:convert:这个图像格式没有解码委托`'@ error/construct.c/ReadImage/501.

我的代码:

FileInputStream imageStream1 = new FileInputStream("1.png");
FileInputStream imageStream2 = new FileInputStream("2.png");
InputStream concatStreams = new SequenceInputStream(imageStream1, imageStream2);

IMOperation op = new IMOperation();
// "-" means to read the image from stdin
op.addImage("-"); // the first, "dummy" image
op.addImage("-"); // 1.png
op.addImage("-"); // 2.png

// output in PSD format to stdout
op.addImage("psd:-");

ConvertCmd cmd = new ConvertCmd();

Pipe pipeIn = new Pipe(concatStreams, null);
cmd.setInputProvider(pipeIn);

// omitted cmd.setOutputConsumer code

cmd.run(op);
Run Code Online (Sandbox Code Playgroud)

Joh*_*dén 0

我知道这是一个非常古老的问题,但我通过谷歌搜索最终来到这里,所以我认为这可能值得回答。

我通过将输入加载为 java.awt.image.BufferedImage 而不是流来解决它。

BufferedImage image1 = ImageIO.read("1.png");
BufferedImage image2 = ImageIO.read("2.png");

IMOperation op = new IMOperation();
// No argument means to use images given in cmd.run. 
// These can be either BufferedImage instances or Strings with the path to files.
op.addImage(); // the first, "dummy" image
op.addImage(); // 1.png
op.addImage(); // 2.png

// output in PSD format to stdout
op.addImage("psd:-");

ConvertCmd cmd = new ConvertCmd();

// omitted cmd.setOutputConsumer code

cmd.run(op, image1, image1, image2);
// for files directly: 
// cmd.run(op, "1.png", "1.png", "2.png");
Run Code Online (Sandbox Code Playgroud)

请注意,输出仍然可以通过管道传输到您想要的任何内容。