我在这里有点失落.我必须将位图从裁剪图像转换为.jpeg文件.我已经查看了其他相关问题,但没有一个与我相关. (大多数都被恢复为文件到位图)
提前致谢
PS.第一次Android开发
解决方法:
用这个:
Bitmap bmp = null;ByteArrayOutputStream stream = new ByteArrayOutputStream();bmp.compress(Bitmap.CompressFormat.JPEG, 100, stream);byte[] byteArray = stream.toByteArray();
为此你可以使用这个:
fileinputStream fileinputStream = null;file file = new file("yourfile");byteArray = new byte[(int) file.length()];try { //convert file into array of bytes fileinputStream = new fileinputStream(file); fileinputStream.read(bfile); fileinputStream.close(); //convert array of bytes into file fileOutputStream fileOuputStream = new fileOutputStream("C:\testing2.txt"); fileOuputStream.write(bfile); fileOuputStream.close(); System.out.println("Done");} catch (Exception e) { e.printstacktrace();}
还有更多信息请与here一起使用
总结以上是内存溢出为你收集整理的如何在Android中将位图转换为jpeg文件?全部内容,希望文章能够帮你解决如何在Android中将位图转换为jpeg文件?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)