You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/image_picker/image_picker_android/android/src/main/java/io/flutter/plugins/imagepicker/ExifDataCopier.java
+12Lines changed: 12 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,18 @@
10
10
importjava.util.List;
11
11
12
12
classExifDataCopier {
13
+
/**
14
+
* Copies all exif data not related to image structure and orientation tag. Data not related to
15
+
* image structure consists of category II (Shooting condition related metadata) and category III
16
+
* (Metadata storing other information) tags. Category I tags are not copied because they may be
17
+
* invalidated as a result of resizing. The exception is the orientation tag which is known to not
18
+
* be invalidated and is crucial for proper display of the image.
19
+
*
20
+
* <p>The categories mentioned refer to standard "CIPA DC-008-Translation-2012 Exchangeable image
21
+
* file format for digital still cameras: Exif Version 2.3"
22
+
* https://www.cipa.jp/std/documents/e/DC-008-2012_E.pdf. Version 2.3 has been chosen because
0 commit comments