一、概述
在Android2.2中,Camera的應用程序並不支持將GPS信息寫入到JPEG文件中,但如果要實現這個功能,有如下兩種方式:
1、修改底層camera驅動。在拍照時,一般都是使用硬件去進行JPEG編碼,這樣就需要修改JPEG編碼器,使其可以將GPS信息寫入JPEG文件的頭部,即EXIF部分。這種方式使用與手機驅動開發者。
2、修改camera應用程序。Camera應用程序本身不支持該功能,但是android系統中提供了支持該功能的類—— ExifInterface。本文介紹如何使用該類進行GPS信息的寫入。這種方法的不足在於,每次寫入GPS功能,都會把原有的JPEG文件讀出,修改 了Exif header部分後再寫入文件。
二、實現GPS寫入功能
首先來看看文件ImageManager.java,該文件位於:
/package/apps/Camera/src/com/android/camera/
該文件中,有個addImage()函數,其定義為:
[java]
- public static Uri addImage(ContentResolver cr, String title, long dateTaken,
-
- Location location, String directory, String filename,
- Bitmap source, byte[] jpegData, int[] degree) {
- 。。。。。。
- String filePath = directory + "/" + filename;
- 。。。。。。
- if (location != null) {
- values.put(Images.Media.LATITUDE, location.getLatitude());
- values.put(Images.Media.LONGITUDE, location.getLongitude());
- }
- }
- return cr.insert(STORAGE_URI, values);
- }
此處,當location不等於null時,表示已經開啟存儲位置的功能,並且該手機的GPS功能已開啟並且正常。在這裡,我們就可以把GPS的信息寫入JPEG文件中。其具體code如下:
[java]
- public static Uri addImage(ContentResolver cr, String title, long dateTaken,
- Location location, String directory, String filename,
- Bitmap source, byte[] jpegData, int[] degree) {
- 。。。。。。
- String filePath = directory + "/" + filename;
- 。。。。。。
-
- if (location != null) {
- values.put(Images.Media.LATITUDE, location.getLatitude());
- values.put(Images.Media.LONGITUDE, location.getLongitude());
- ExifInterface exif = null;
- try {
- exif = new ExifInterface(filePath);
- } catch (IOException ex) {
- Log.e(TAG, "cannot read exif", ex);
- }
- exif.setAttribute(ExifInterface.TAG_GPS_LATITUDE, Double.toString(location.getLatitude()));
- exif.setAttribute(ExifInterface.TAG_GPS_LONGITUDE, Double.toString(location.getLongitude()));
- try{
- if(exif != null)
- exif.saveAttributes();
- } catch (IOException ex) {
- Log.e(TAG, "Fail to exif.saveAttributes().");
- }
- }
- return cr.insert(STORAGE_URI, values);
- }