我正在尝试使用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);
}
答案 0 :(得分:1)
操作的顺序很重要:在缩略图和范围之前放置重力操作:
IMOperation op = new IMOperation();
op.addImage(sourceFile);
op.gravity("center");
op.thumbnail(width, height, '^');
op.extent(width,height);
op.addImage(destinationFile);