1

我想使用 im4java 将图像从 gif 转换为 jpeg。执行后应该有一张gif和一张ipeg图片。但是当我这样做时。有3张图片。一个是原始gif,一个是新的nomarl jpeg,另一个是崩溃的jpeg图片。有些图片可能会导致此问题。有些可能不会。有没有人知道为什么?谢谢


public static void convertImage(String srcPath, String newPath, String format)
throws Exception
{
    IMOperation op = new IMOperation();
    op.addImage(srcPath);
    op.addImage(newPath);
    System.out.println(op);
    ConvertCmd cmd = new ConvertCmd();
    cmd.run(op);
}
public static void changePictures(String format) throws Exception
{
    File file = new File("picture path");
    File pictureArray[];
    pictureArray = file.listFiles();
    int i;
    for(i = 0; i < pictureArray.length; i++)
    {
        convertImage(pictureArray[i].getAbsolutePath(), "picture path" + i + "." +          format, format);   
    }

}
4

1 回答 1

0

op.addImage(srcPath); 这里。因为一个gif文件中的图片不止一张。试试这个op.addImage(srcPath+"[0]");

于 2013-11-15T05:01:35.160 回答