Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在做一个相机应用程序,我需要提取标题中图片的曝光时间。我正在通过网络传输图像,我需要在实际图片之前传输曝光时间。
现在我知道在像 irfanview 这样的程序中,您可以提取曝光时间,但我需要使用 Android SDK 来完成,所以我想知道这是否可能,或者是否有人已经这样做了。
谢谢
试试这个:
try { ExifInterface exif = new ExifInterface("test.jpg"); String exposure = exif.getAttribute(ExifInterface.TAG_EXPOSURE_TIME); } catch (IOException e) { // Handle IO error }