编写灰度图像时出错

时间:2015-06-23 09:39:33

标签: java image-processing

Figure 1 Figure 2

以下是我编写的代码,用于更改灰度图像的像素值以创建全白图像(所有像素值设置为255)。但是,如图2所示,我没有得到完整的白色图像,而是在它们之间得到黑色竖条。我在哪里出错了?

package dct;

import java.awt.image.BufferedImage;
import java.awt.image.WritableRaster;
import java.io.File;
import javax.imageio.ImageIO;

public class writeGScale {
    public static void main(String[] args){
        File file = new File("bridge.jpg");
        BufferedImage img = null;
        try{
            img = ImageIO.read(file);
        }
        catch(Exception e){
            e.printStackTrace();
        }

        int width = img.getWidth();
        int height = img.getHeight();
        int[] tempArr = new int[width*height];

        WritableRaster raster1=img.getRaster();

        for(int i=0;i<width;i++){
            for(int j=0;j<height;j++){
                tempArr[0] = 255;
                raster1.setPixel(i, j, tempArr);
            }
        }

        BufferedImage image = new BufferedImage(width, height, BufferedImage.TYPE_BYTE_GRAY);
        image.setData(raster1);

        try{
            File ouptut = new File("change.png");
            ImageIO.write(image, "png", ouptut);
        }
        catch(Exception e){
            e.printStackTrace();
        }
    }
}

1 个答案:

答案 0 :(得分:2)

我不知道为什么你将大数组tempArr = new int[width*height]传递给setpixel方法。我创建了一个int col数组,代表白色,我将它传递给{{1然后我能够获得完整的白色图像作为输出。

setPixel()