php 如何将图片转换成java中Byte[]的
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 如何将图片转换成java中Byte[]的相关的知识,希望对你有一定的参考价值。
php 如何将图片转换成java中Byte[]的 file_get_content() 是不行的
按照你的要求编写的Java程序如下:( 要注意的地方见语句后面的注释)
import java.awt.image.BufferedImage;import java.awt.image.RenderedImage;import java.io.File;import java.io.IOException;import javax.imageio.ImageIO;public class ImageWithArray public static void main(String[] args) // 读取图片到BufferedImage BufferedImage bf = readImage("c:\\\\tmp\\\\6\\\\female.png");//这里写你要读取的绝对路径+文件名 // 将图片转换为二维数组 int[][] rgbArray1 = convertImageToArray(bf); // 输出图片到指定文件 writeImageFromArray("c:\\\\tmp\\\\2.png", "png", rgbArray1);//这里写你要输出的绝对路径+文件名 System.out.println("图片输出完毕!"); public static BufferedImage readImage(String imageFile) File file = new File(imageFile); BufferedImage bf = null; try bf = ImageIO.read(file); catch (IOException e) e.printStackTrace(); return bf; public static int[][] convertImageToArray(BufferedImage bf) // 获取图片宽度和高度 int width = bf.getWidth(); int height = bf.getHeight(); // 将图片sRGB数据写入一维数组 int[] data = new int[width*height]; bf.getRGB(0, 0, width, height, data, 0, width); // 将一维数组转换为为二维数组 int[][] rgbArray = new int[height][width]; for(int i = 0; i < height; i++) for(int j = 0; j < width; j++) rgbArray[i][j] = data[i*width + j]; return rgbArray; public static void writeImageFromArray(String imageFile, String type, int[][] rgbArray) // 获取数组宽度和高度 int width = rgbArray[0].length; int height = rgbArray.length; // 将二维数组转换为一维数组 int[] data = new int[width*height]; for(int i = 0; i < height; i++) for(int j = 0; j < width; j++) data[i*width + j] = rgbArray[i][j]; // 将数据写入BufferedImage BufferedImage bf = new BufferedImage(width, height, BufferedImage.TYPE_INT_BGR); bf.setRGB(0, 0, width, height, data, 0, width); // 输出图片 try File file= new File(imageFile); ImageIO.write((RenderedImage)bf, type, file); catch (IOException e) e.printStackTrace();
运行结果:
图片输出完毕!
原图:
输出图:
参考技术A file_get_content取得是这个文件内容,你这样只会取出来乱码,你如果是想要将图片转为文本格式便于存储的话可以使用下面的函数fread读取图片内容,读出内容后base64_encode转换为base64用于存储
用base64_decode重新转换为图片
Java中如何把图片转换成二进制流
Java中将图片转为二进制流只需要使用FileImageInputStream取得图片文件,然后使用ByteArrayOutputStream 写入到二进制流中即可,下面是详细代码:
//图片到byte数组
public byte[] image2byte(String path)
byte[] data = null;
FileImageInputStream input = null;
try
input = new FileImageInputStream(new File(path));
ByteArrayOutputStream output = new ByteArrayOutputStream();
byte[] buf = new byte[1024];
int numBytesRead = 0;
while ((numBytesRead = input.read(buf)) != -1)
output.write(buf, 0, numBytesRead);
data = output.toByteArray();
output.close();
input.close();
catch (FileNotFoundException ex1)
ex1.printStackTrace();
catch (IOException ex1)
ex1.printStackTrace();
return data;
另外,如果需要将byte[]存回图片或转为String,则:
//byte数组到图片public void byte2image(byte[] data,String path)
if(data.length<3||path.equals("")) return;
try
FileImageOutputStream imageOutput = new FileImageOutputStream(new File(path));
imageOutput.write(data, 0, data.length);
imageOutput.close();
System.out.println("Make Picture success,Please find image in " + path);
catch(Exception ex)
System.out.println("Exception: " + ex);
ex.printStackTrace();
//byte数组到16进制字符串
public String byte2string(byte[] data)
if(data==null||data.length<=1) return "0x";
if(data.length>200000) return "0x";
StringBuffer sb = new StringBuffer();
int buf[] = new int[data.length];
//byte数组转化成十进制
for(int k=0;k<data.length;k++)
buf[k] = data[k]<0?(data[k]+256):(data[k]);
//十进制转化成十六进制
for(int k=0;k<buf.length;k++)
if(buf[k]<16) sb.append("0"+Integer.toHexString(buf[k]));
else sb.append(Integer.toHexString(buf[k]));
return "0x"+sb.toString().toUpperCase();
参考技术A
使用java的IO流对图片进行二进制读取操作即可
示例为:读取图片为二进制流,并写入到其他图片中
static void testCopyImage()File source=new File("E:\\\\share\\\\Wallpaper\\\\Bliss.jpg");
File desk=new File("d:\\\\images");
if(!desk.exists())
desk.mkdir();
try
FileInputStream inputStream=new FileInputStream(source);
FileOutputStream outputStream=new FileOutputStream(new File("d:/images/Bliss.jpg"));
int ch=inputStream.read();
while(ch!=-1)
outputStream.write(ch);
ch=inputStream.read();
inputStream.close();
outputStream.close();
System.out.println("图片复制成功!");
catch (FileNotFoundException e)
System.out.println("文件不存在:"+e.getMessage());
catch (IOException e)
System.out.println("文件读取错误:"+e.getMessage());
参考技术B
我们知道数据库里的Image类型的数据是"二进制数据",因此必须将图像文件转换成字节数组才能存入数据库中。
//根据文件名(完全路径)
public byte[] SetImageToByteArray(string fileName)
FileStream fs = new
FileStream(fileName, FileMode.Open);
int streamLength = (int)fs.Length; byte[] image = new
byte[streamLength];
fs.Read(image, 0, streamLength);
fs.Close();
return image;
//另外,在ASP.NET中通过FileUpload控件得到的图像文件可以通过以下方法
public byte[]
SetImageToByteArray(FileUpload FileUpload1)
Stream stream = FileUpload1.PostedFile.InputStream;
byte[] photo = new byte[FileUpload1.PostedFile.ContentLength];
stream.Read(photo, 0, FileUpload1.PostedFile.ContentLength);
stream.Close();
return photo;
2.从SQL Server数据库读取Image类型的数据,并转换成bytes[]或Image图像文件
//要使用SqlDataReader要加载using System.Data.SqlClient命名空间
//将数据库中的Image类型转换成byte[] public byte[] SetImage(SqlDataReader reader)
return (byte[])reader["Image"];//Image为数据库中存放Image类型字段
//将byte[]转换成Image图像类型 //加载以下命名空间using System.Drawing;/using System.IO;
using System.Data.SqlClient;*/ public Image SetByteToImage(byte[]
mybyte)
Image image; MemoryStream mymemorystream = new MemoryStream(mybyte,0,
mybyte.Length);
image = Image.FromStream(mymemorystream);
return image;
本回答被提问者和网友采纳
以上是关于php 如何将图片转换成java中Byte[]的的主要内容,如果未能解决你的问题,请参考以下文章