0

我想通过网络发送缓冲图像作为我的自定义类的一部分。

我目前只是 writeObject 和 readObject 来获取我的课程。

要发送当前正在执行的图像:

((DataBufferByte) i.getData().getDataBuffer()).getData();

如何将其转换回 BufferedImage?

有没有更好的方法来做到这一点?

我发送的课程如下所示:

public class imagePack{

public byte[] imageBytes;
public String clientName;
public imagePack(String name, BufferedImage i){
    imageBytes = ((DataBufferByte) i.getData().getDataBuffer()).getData();
    clientName = name;
}

    public BufferedImage getImage(){
     //Do something to return it}

}

再次感谢

4

1 回答 1

0

如果要将其转换回 BufferedImage,您还必须知道它的宽度、高度和类型。

class imagePack {

    public byte[] imageBytes;
    public int width, height, imageType;
    public String clientName;

    public imagePack(String name, BufferedImage i) {
        imageBytes = ((DataBufferByte) i.getData().getDataBuffer())
                .getData();
        width = i.getWidth();
        height = i.getHeight();
        imageType = i.getType();
        clientName = name;
    }

    public BufferedImage getImage() {
        if (imageType == BufferedImage.TYPE_CUSTOM)
            throw new RuntimeException("Failed to convert.");
        BufferedImage i2 = new BufferedImage(width, height, imageType);
        byte[] newImageBytes = ((DataBufferByte) i2.getData()
                .getDataBuffer()).getData();
        System.arraycopy(imageBytes, 0, newImageBytes, 0, imageBytes.length);
        return i2;
    }
}
于 2013-04-21T13:57:33.607 回答