0

我正在使用 drawImage() 将大量面部图像 (face_50xx.png) 粘贴到一个大画布 (Faces.png) 上,

但每张脸都变成了全黑。

这是我的源代码:

import java.io.*;
import javax.imageio.ImageIO;
import java.awt.*;
import java.awt.image.BufferedImage;
import java.awt.Color;


public class maa{

static BufferedImage in;
static BufferedImage out;

public static void main(String[] args) {
    String A = "face_";
    String B = "png";
    int j = 0;

    try{
        in = ImageIO.read(new File(A + 5001 + "." + B));
    }
    catch(java.io.IOException e){
    }




    out = new BufferedImage(1920, 14592, in.getType());


    for(int i = 1; i < 760; i++){
        String num;
        j = i + 5000;
        num = Integer.toString(j);
        try{
            in = ImageIO.read(new File("face_" + num + "." + "png"));
            Graphics g = in.getGraphics();
            g.drawImage(out, (i%10)*192, (i/10)*192, null);

        }
        catch(java.io.IOException e){
            continue;
        }
    }
    try{
        ImageIO.write(out,"png",new File("Faces." + B));
    }
    catch(java.io.IOException e){

    }
}


}

请教我有什么问题。谢谢。

4

2 回答 2

2
  • 您对输出图像完全没有做任何事情,因此当您将其写入文件时,它将是空白的。
  • 您似乎在绘制错误的图像。您想从输出图像中获取 Graphics 对象 g,并将输入图像绘制到输出上。
  • 你不应该像你一样忽略异常。至少打印出堆栈跟踪:

例如,

catch(IOException e) {
  e.printStackTrace();
}

你的程序的基本结构应该是:

create out image
get Out's Graphics object, g
for Loop through all of the `in` images
  Draw each in image onto out using out's Graphics context, g
end for loop
dispose of g
Write the out image to file

编辑: 你在评论中说,

Graphics g = in.getGraphics();是将 in 图像传输到 g 中的命令,不是吗?

不,你把事情搞反了。将 Graphics 对象 g 想象成一支笔,它允许您在从中获取它的图像上绘图。因此,来自in图像的 Graphics 对象 g 允许我在in图像上绘图。

于 2013-08-08T13:13:38.380 回答
-2

代替:

Graphics g = in.getGraphics();
            g.drawImage(out, (i%10)*192, (i/10)*192, null);

经过:in.getGraphics().drawImage(out, (i%10)*192, (i/10)*192, null);

于 2014-05-07T13:23:02.207 回答