im4java和imagemagick - 为什么重力参数不起作用?

时间:2014-09-04 10:37:48

标签: java imagemagick im4java

我正在尝试使用Image Magick通过IM4Java库调整图像大小。

效果很好,但图像不居中。我通过外部命令行运行这些相同的命令,它们运行良好。

有谁能告诉我为什么这不起作用?

private void convertImage(int width, int height, String source, String dest)
        throws IOException, IM4JavaException, InterruptedException
{
    // create command
    ConvertCmd cmd = new ConvertCmd();

    // create the operation, add images and operators/options
    IMOperation op = new IMOperation();
    op.addImage(source);

    op.thumbnail(width, height, ">");
    op.extent(width, height);
    op.gravity("center");
    op.background("white");

    op.addImage(dest);
    ProcessStarter.setGlobalSearchPath("/usr/local/bin");
    cmd.setOutputConsumer(imageMagickOutputter);
    cmd.run(op);

}

The result of the command with background switched to blue

1 个答案:

答案 0 :(得分:1)

操作的顺序很重要:在缩略图和范围之前放置重力操作:

        IMOperation op = new IMOperation();
        op.addImage(sourceFile);
        op.gravity("center");
        op.thumbnail(width, height, '^');
        op.extent(width,height);
        op.addImage(destinationFile);