一. 为什么要将BufferedImage转为byte数组?
在传输中,图片是不能直接传的,因此需要把图片变为字节数组,然后传输比较方便。
而字节数组变成BufferedImage能够还原图像。
参考1:https://blog.csdn.net/weixin_39958559/article/details/114788932
参考2:https://blog.csdn.net/itigoitie/article/details/125301480
参考3:http://www.360doc.com/content/20/0522/17/1314937_913926645.shtml
怎么转成byte[][]二维数组?
>>分离rgb通道?BufferedImage.getRGB()
https://blog.csdn.net/missieo/article/details/123635801 https://zhuanlan.zhihu.com/p/463140610
Java的int是32位,ARGB包含Alpha、R、G、B四个通道,每个通道占8位。下面就是要从32位的像素值中分离出R、G、B三个通道了。
标签:java,BufferedImage,blog,csdn,details,https,byte From: https://www.cnblogs.com/2008nmj/p/17533913.html