3

サイズが 16x6080 の画像があります。これは、16 x 16 のセクションに国旗を含む積み上げ画像です。私の目標は、この画像から特定の国の国旗のみを取り出して、独自のファイルとして保存することです。これが私の現在のコードです

            //Original Image
        BufferedImage image = ImageIO.read(new File(countryImageNamePath));

        System.out.println("Original Image Dimension: "+image.getWidth()+"x"+image.getHeight());

        //Get the cropped image
        BufferedImage out = image.getSubimage(0, 1808, 16, 16);

        //Create a file to stream the out buffered image to
        File croppedFile = new File(countryImagePath + countryName + ".gif");

        //Write the cropped file
        ImageIO.write(out, "gif", croppedFile);

生成される出力は

Original Image Dimension: 16x6080
Write File : C:\Applications\WorldCoinParser\images\country\US.gif

Y座標に入力する値は関係ありません。常に、幅と高さが16のx = 0およびy = 0から始まる画像の上部を取得します。

私がめちゃくちゃになっているところを誰かが見ていますか?

ありがとう!

4

1 に答える 1

0

@MattPerry が言ったように、Java 7 にアップグレードするだけでこの問題を解決できます。

ドキュメントの目的のためだけに、バグはこれであると思われますhttp://bugs.sun.com/view_bug.do?bug_id=6795544および影響を受けた Java 6.

The reason of problem here is that the optimized writing loop (utilized 
 direct access to image data buffer) does not take into account a data 
 band offset (which is non-trivial for sub-images, for example). It results 
 in writing image data starting from top left corner of the parent image 
 instead of expected top left corner of the sub-image.

 We  should take into account data bands offset, calculated by translated
 raster instance.

JDK5を使用してこのバグを再現できました

そしてそれはJDK7で動作します

于 2014-01-18T01:08:29.143 に答える