没有ExifInterface如何确定图片的方向?
我将图像加载到位图中,并且需要知道所拍摄照片(来自相机)的方向才能正确显示它。使用以下代码的方法运行良好(自 API 级别 5 起),但是如果 android:minSdkVersion="4"
该怎么办?还有别的办法吗?
ExifInterface exif = new ExifInterface(SourceFileName); //Since API Level 5
String exifOrientation = exif.getAttribute(ExifInterface.TAG_ORIENTATION);
I load an image into a bitmap
and need to know the orientation of the taken picture (from camera) to show it correctly. The way to use the following code is working nice (since API Level 5), but what to do if android:minSdkVersion="4"
? Is there another way?
ExifInterface exif = new ExifInterface(SourceFileName); //Since API Level 5
String exifOrientation = exif.getAttribute(ExifInterface.TAG_ORIENTATION);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
轻松实现您自己的 exif 阅读器
然后
Easy implement your own exif reader
Then