2

ImageMagick での画像処理操作に im4java ライブラリを使用しています。

私が使用しているコードは次のようになります。

ImageCommand imageCommand = new ConvertCmd();
imageCommand.setSearchPath(getImageMagickPath());
operation = new IMOperation();
operation.quality(100d);
operation.addImage();
operation.resize(getWidth());
operation.addImage();
imageCommand.run(operation, sourceImage, extention);

しかし、結果として得られる画像の品質は悪いです。コマンドラインを使用して同じことを行うと、サイズが 4 倍になり、品質が向上します。im4java を使用する場合に設定する必要がある追加の設定はありますか? ファイル形式はjpgです。前もって感謝します...

4

1 に答える 1

0

これは私が使用しているコードで、魅力的に機能します:

    private static void saveScaleImage(File image, String outputImagePath, int width, Integer height, float quality, boolean fill) throws Exception {
        Info info = new Info(image.getPath(), true);
        String imageFormat = info.getImageFormat();
        IMOperation op = new IMOperation();
        op.addImage(imagen.getPath());
        int imageWidth = info.getImageWidth(),
            imageHeight = info.getImageHeight();
        if (imageWidth> 0 && imageHeight > 0 && (imageFormat == null || !imageFormat.equalsIgnoreCase("TIFF"))) {
            //fill transparencies && extra space with white
            op.size(imageWidth, imageHeight);
            op.addRawArgs("xc:white");
            op.addImage(outputImagePath);
            // set up command
            CompositeCmd composite = new CompositeCmd();
            composite.run(op);
            op = new IMOperation();
            op.addImage(outputImagePath);
        }
        //add strip irrelevant info
        op.strip();
        //resize
        if (fill) { //crop image + fill
            op.resize(width, height, "^").gravity("center").extent(width, height);
        } else { //adjust
           op.resize(width, height);
        }
        boolean smaller = imageWidth > 0 && imageHeight > 0 && imageWidth < width && imageHeight < width;
        if (smaller) {
            op.addImage(outputImagePath);
            op.gravity("center");
        }
        if (imageFormat == null || imageFormat.equalsIgnoreCase("PNG")) {
            //jpeg teawks
            op.type("optimize").quality((double) quality).blur(0d, .16);
            //default to jpeg format
            op.addImage("jpeg:" + outputImagePath);
        } else {
            op.addImage(outputImagePath);
        }
        // set up command
        ConvertCmd convert = new ConvertCmd();
        //run command
        convert.run(op);
    }
于 2013-03-17T23:58:30.507 に答える