在图像文件中逐个写入固定大小的字节

时间:2015-10-17 02:14:04

标签: java image file byte

我想在图像文件中写一个固定大小(比如1024 kb)。我知道以下代码适用于在文件中附加字节。

fos=new FileOutputStream(new File("profile1.jpg"),true);//correct format
ImageIO.write(img, "jpg", new File("C:/test.jpg",true));//did not work out, wrong //code but i want to append the byte 1024 at a time.

是否可以将该字节附加到图像文件中。请任何人帮助我。

0 个答案:

没有答案