我正在使用
android.hardware.Camera类拍照,我发现根本没有exif数据存储在图像中.如果我在我的DROID上使用相机应用程序,则保存所有exif数据.
我已经尝试使用Set()和SetRotation()设置旋转,看看是否可以显示一些exif数据.当我用exif阅读器查看笔记本电脑上的图像时,它告诉我图像没有exif数据.
我见过一些类似的帖子,但我还没有找到解决方法.有没有人看过其他手机的这个问题?
我正在使用Android 2.0.1 SDK
解决方法
因此,经过一些研究,我发现当我使用以下代码将图像数据保存到SD卡时,我丢失了EXIF信息.
BitmapFactory.Options options=new BitmapFactory.Options(); options.inSampleSize = 0; Bitmap myImage = BitmapFactory.decodeByteArray(imageData,imageData.length); FullFileName = sdImageMainDirectory.toString() + "/DCIM/Camera/" + getDateTime() + ".jpg"; fileOutputStream = new FileOutputStream(FullFileName); BufferedOutputStream bos = new BufferedOutputStream(fileOutputStream); myImage.compress(CompressFormat.JPEG,quality,bos); bos.flush(); bos.close();
我将上面的代码更改为这个,现在所有来自相机的EXIF数据都存在.
FileOutputStream file = new FileOutputStream(FileName); file.write(imageData);