我目前正试图分割图像,我遇到了一个小故障,我不知道它为什么会发生。
这是我的功能的快速伪代码细分
bufferedImage.getSubimage(300,300, bufferedImage.getWidth()/ columns,bufferedImage.getHeight()/ rows);
问题是程序似乎没有正确读取int x和int y参数。例如,使用300,300作为上面的参数,但它似乎不从坐标300,300中裁剪,而是从0,0而不管您输入什么值。
任何建议!
谢谢!
是的,这是我方法中的代码:public static void splitImage(String imageFileName, String format, int rows, int columns) {
// Load the image file
File imageFile = new File(imageFileName);
try {
BufferedImage bufferedImage = ImageIO.read(imageFile);
// Split the image up into corresponding number of sub-images
BufferedImage[][] splitImages = new BufferedImage[rows][columns];
for (int i = 0; i < splitImages.length; i++) {
for (int j = 0; j < splitImages[i].length; j++) {
splitImages[i][j] = bufferedImage.getSubimage(bufferedImage.getWidth() / columns * i, bufferedImage.getHeight() / rows * j,
bufferedImage.getWidth() / columns, bufferedImage.getHeight() / rows);
}
}
System.out.println(bufferedImage.getWidth() / columns + "\n" + bufferedImage.getHeight() / rows);
splitImages[0][0] = bufferedImage.getSubimage(300, 300,
bufferedImage.getWidth() / columns * 2, bufferedImage.getHeight() / rows * 2);
// Write that into the images directory
for (int i = 0; i < splitImages.length; i++) {
for (int j = 0; j < splitImages[i].length; j++) {
imageName++;
ImageIO.write(splitImages[i][j], format, new File("images/" + imageName + "." + format));
}
}
ImageIO.write(splitImages[0][0], format, new File("images/" + imageName + "." + format));
} catch (IOException e) {
JOptionPane.showMessageDialog(null, "The image file doesn't exist!");
}
}
似乎这不是方法的问题,因为它是文件格式的问题。有了GIF,它没有用。使用JPEG,它工作正常。
有人可以解释原因吗?
谢谢!
答案 0 :(得分:1)
这是Java的一个错误。我相信它已在JDK 7中得到修复,但我并不是100%肯定(我认为实际的修复程序已在9月的某个时候进行了审核)