確定。所以我們可以說我有這張圖片:http://i.stack.imgur.com/oYhJy.pngx和y上的Java裁剪
我正在嘗試將圖像裁切(它工作 - 我只是有錯誤的數字)到單獨的圖像數組。平鋪圖像(上面鏈接)寬度爲36,寬度爲15。所以這是1152像素的寬度(32瓦寬* 36瓦)和480像素高(32瓦高* 15瓦)。
這是我到目前爲止有:
for (int xi = 0; xi < 522; xi++) {
int cropHeight = 32;
int cropWidth = 32;
int cropStartX = xi*32;
int cropStartY = 0;
if (xi % 36 == 0) {
cropStartY = xi*32;
}
BufferedImage processedImage = cropMyImage(originalImage, cropWidth, cropHeight, cropStartX, cropStartY);
tiles[xi] = processedImage;
}
我在做什麼錯?它在技術上工作,但它得到錯誤的瓷磚圖像。
很好用!謝謝。 – nn2 2011-05-13 21:14:24