如何在android中调整原始图像的大小
我正在处理图像,上传原始图像在此原始图像中调整该图像保存到数据库
原始图像中的小图像的大小 -->调整大小(小图)-->小图像保存到数据库中,
请转发解决方案
,谢谢
i am working on image ,upload original image in this original image resize the small image this image saved in to database
original image --> resize it (small image )--> small image saved in to database
please forward solution
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,您需要使用 Bitmap 类。
它有几个函数可以从以前的位图创建新的位图,
完整列表可以在文档中找到:
http://developer.android.com/reference/android/graphics/Bitmap.html
关于保存到数据库我从未做过,但这取决于您的服务器。
To do this you'll want to play around with the Bitmap class.
It has several functions to create new bitmaps form previous ones
a full list can be found in the documentation :
http://developer.android.com/reference/android/graphics/Bitmap.html
Regarding the save to a database I've never done but it would depend on your server.