现在,我正在使用im4java和imageMagick来处理图片。 最近,它总是出现
org.im4java.core.CommandException:返回码:137
同时,作为我的Application Server的Tomcat7.0将崩溃。
当然,我的程序在linux下运行。 我不知道该怎么做。求助 谢谢! 我的代码是
public static void cutImage(int width, String srcPath, String newPath) throws Exception {
IMOperation op = new IMOperation();
op.addImage(srcPath);
op.resize(width, null);
op.addImage(newPath);
ConvertCmd convert = new ConvertCmd();
convert.run(op);
}
当我称这种方法时。这种现象有时会发生。
答案 0 :(得分:1)
通过从视频生成缩略图,我遇到了类似的问题。 就像来自zawhtut的评论一样,这个过程会从某个地方被杀死。 我的第一个解决方案是减小图像的大小(从1920px到256px)