exiftool-rs 0.4.5

Read, write, and edit metadata in 93 file formats — a pure Rust reimplementation of ExifTool 13.53 with 100% tag name parity (194/194 test files)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
//! TIFF file format reader.
//!
//! TIFF files are essentially a raw IFD structure, which is the same as EXIF.
//! Many RAW formats (CR2, NEF, DNG, ARW, ORF) are TIFF-based.
//! Also handles BigTIFF (magic 0x2B) and Panasonic RW2 (magic 0x55).

use crate::error::{Error, Result};
use crate::metadata::ExifReader;
use crate::tag::{Tag, TagGroup, TagId};
use crate::value::Value;

/// Extract all metadata tags from a TIFF file.
pub fn read_tiff(data: &[u8]) -> Result<Vec<Tag>> {
    if data.len() < 8 {
        return Err(Error::InvalidData("file too small for TIFF".into()));
    }

    let is_le = data[0] == b'I' && data[1] == b'I';
    let is_be = data[0] == b'M' && data[1] == b'M';

    if !is_le && !is_be {
        return Err(Error::InvalidData("not a TIFF file".into()));
    }

    let magic = if is_le {
        u16::from_le_bytes([data[2], data[3]])
    } else {
        u16::from_be_bytes([data[2], data[3]])
    };

    let mut tags = match magic {
        // Standard TIFF
        42 => ExifReader::read(data)?,
        // BigTIFF (magic 43) - IFD offset is 8 bytes at offset 8
        43 => {
            // BigTIFF has a different IFD structure:
            // - IFD entry count is 8 bytes (we only use lower 4)
            // - Each IFD entry is 20 bytes: tag(2) type(2) count(8) offset(8)
            // - Value fits inline if count * type_size <= 8
            // Parse IFD offset from BigTIFF header at bytes 8-15
            if data.len() >= 16 {
                let ifd_offset = if is_le {
                    u64::from_le_bytes([
                        data[8], data[9], data[10], data[11],
                        data[12], data[13], data[14], data[15],
                    ])
                } else {
                    u64::from_be_bytes([
                        data[8], data[9], data[10], data[11],
                        data[12], data[13], data[14], data[15],
                    ])
                } as usize;
                read_bigtiff_ifd(data, ifd_offset, is_le)?
            } else {
                vec![]
            }
        }
        // Panasonic RW2 (magic 0x55)
        0x55 => {
            read_rw2(data, is_le)?
        }
        _ => return Err(Error::InvalidData(format!("unknown TIFF magic: 0x{:04X}", magic))),
    };

    // Process GeoTiff keys if GeoTiffDirectory tag is present
    process_geotiff(&mut tags);

    Ok(tags)
}

// ─────────────────────────────────────────────────────────────────────────────
// Panasonic RW2 reader
// ─────────────────────────────────────────────────────────────────────────────

/// Read helpers for byte-order-aware values.
fn rw2_u16(data: &[u8], off: usize, le: bool) -> u16 {
    if off + 2 > data.len() { return 0; }
    if le { u16::from_le_bytes([data[off], data[off+1]]) }
    else   { u16::from_be_bytes([data[off], data[off+1]]) }
}
fn rw2_i16(data: &[u8], off: usize, le: bool) -> i16 {
    rw2_u16(data, off, le) as i16
}
fn rw2_u32(data: &[u8], off: usize, le: bool) -> u32 {
    if off + 4 > data.len() { return 0; }
    if le { u32::from_le_bytes([data[off], data[off+1], data[off+2], data[off+3]]) }
    else   { u32::from_be_bytes([data[off], data[off+1], data[off+2], data[off+3]]) }
}

/// PanasonicRaw IFD0 tag table (from PanasonicRaw.pm ::Main).
/// Returns (name, family2).
fn panasonic_raw_tag(tag: u16) -> Option<(&'static str, &'static str)> {
    Some(match tag {
        0x0001 => ("PanasonicRawVersion", "Image"),
        0x0002 => ("SensorWidth",         "Image"),
        0x0003 => ("SensorHeight",        "Image"),
        0x0004 => ("SensorTopBorder",     "Image"),
        0x0005 => ("SensorLeftBorder",    "Image"),
        0x0006 => ("SensorBottomBorder",  "Image"),
        0x0007 => ("SensorRightBorder",   "Image"),
        0x0008 => ("SamplesPerPixel",     "Image"),
        0x0009 => ("CFAPattern",          "Image"),
        0x000a => ("BitsPerSample",       "Image"),
        0x000b => ("Compression",         "Image"),
        0x000e => ("LinearityLimitRed",   "Image"),
        0x000f => ("LinearityLimitGreen", "Image"),
        0x0010 => ("LinearityLimitBlue",  "Image"),
        0x0011 => ("RedBalance",          "Camera"),
        0x0012 => ("BlueBalance",         "Camera"),
        // 0x0013: WBInfo (old, skip)
        0x0017 => ("ISO",                 "Image"),
        0x0018 => ("HighISOMultiplierRed",   "Image"),
        0x0019 => ("HighISOMultiplierGreen", "Image"),
        0x001a => ("HighISOMultiplierBlue",  "Image"),
        0x001b => ("NoiseReductionParams",   "Image"),
        0x001c => ("BlackLevelRed",   "Image"),
        0x001d => ("BlackLevelGreen", "Image"),
        0x001e => ("BlackLevelBlue",  "Image"),
        0x0024 => ("WBRedLevel",   "Image"),
        0x0025 => ("WBGreenLevel", "Image"),
        0x0026 => ("WBBlueLevel",  "Image"),
        // 0x0027: WBInfo2 (handled separately)
        0x002d => ("RawFormat",    "Image"),
        // 0x002e: JpgFromRaw (handled separately)
        0x002f => ("CropTop",    "Image"),
        0x0030 => ("CropLeft",   "Image"),
        0x0031 => ("CropBottom", "Image"),
        0x0032 => ("CropRight",  "Image"),
        // Standard TIFF / EXIF tags also valid in RW2 IFD0:
        0x010f => ("Make",           "Camera"),
        0x0110 => ("Model",          "Camera"),
        0x0111 => ("StripOffsets",   "Image"),
        0x0112 => ("Orientation",    "Image"),
        0x0115 => ("SamplesPerPixel","Image"),
        0x0116 => ("RowsPerStrip",   "Image"),
        0x0117 => ("StripByteCounts","Image"),
        0x0118 => ("RawDataOffset",  "Image"),
        // 0x0119: DistortionInfo (handled separately)
        0x011a => ("XResolution",    "Image"),
        0x011b => ("YResolution",    "Image"),
        0x011c => ("Gamma",          "Image"),
        0x0128 => ("ResolutionUnit", "Image"),
        0x0131 => ("Software",       "Image"),
        0x0132 => ("ModifyDate",     "Time"),
        0x013b => ("Artist",         "Author"),
        0x0213 => ("YCbCrPositioning","Image"),
        0x8298 => ("Copyright",      "Author"),
        _ => return None,
    })
}

/// Apply print conversions specific to PanasonicRaw IFD0 tags.
fn panasonic_raw_print_conv(tag: u16, value: &Value) -> Option<String> {
    match tag {
        0x0009 => { // CFAPattern
            if let Some(v) = value.as_u64() {
                return Some(match v {
                    0 => "n/a",
                    1 => "[Red,Green][Green,Blue]",
                    2 => "[Green,Red][Blue,Green]",
                    3 => "[Green,Blue][Red,Green]",
                    4 => "[Blue,Green][Green,Red]",
                    _ => return None,
                }.to_string());
            }
        }
        0x000b => { // Compression
            if let Some(v) = value.as_u64() {
                return Some(match v {
                    34316 => "Panasonic RAW 1",
                    34826 => "Panasonic RAW 2",
                    34828 => "Panasonic RAW 3",
                    34830 => "Panasonic RAW 4",
                    _ => return None,
                }.to_string());
            }
        }
        0x0112 => { // Orientation (same as standard EXIF)
            if let Some(v) = value.as_u64() {
                return Some(match v {
                    1 => "Horizontal (normal)",
                    2 => "Mirror horizontal",
                    3 => "Rotate 180",
                    4 => "Mirror vertical",
                    5 => "Mirror horizontal and rotate 270 CW",
                    6 => "Rotate 90 CW",
                    7 => "Mirror horizontal and rotate 90 CW",
                    8 => "Rotate 270 CW",
                    _ => return None,
                }.to_string());
            }
        }
        0x0128 => { // ResolutionUnit
            if let Some(v) = value.as_u64() {
                return Some(match v {
                    1 => "No Absolute Unit",
                    2 => "inches",
                    3 => "centimeters",
                    _ => return None,
                }.to_string());
            }
        }
        0x0213 => { // YCbCrPositioning
            if let Some(v) = value.as_u64() {
                return Some(match v {
                    1 => "Centered",
                    2 => "Co-sited",
                    _ => return None,
                }.to_string());
            }
        }
        _ => {}
    }
    None
}

/// Parse RW2 IFD value (same as standard TIFF IFD value decoding).
fn rw2_read_value(data: &[u8], dtype: u16, count: u32, inline_data: &[u8; 4], value_offset: u32, le: bool) -> Option<Value> {
    let elem_size: usize = match dtype {
        1 | 2 | 6 | 7 => 1,
        3 | 8 => 2,
        4 | 9 | 11 | 13 => 4,
        5 | 10 | 12 => 8,
        _ => return None,
    };
    let total = elem_size * count as usize;
    let value_data: &[u8] = if total <= 4 {
        &inline_data[..total.min(4)]
    } else {
        let off = value_offset as usize;
        if off + total > data.len() { return None; }
        &data[off..off + total]
    };

    Some(match dtype {
        1 => if count == 1 { Value::U8(value_data[0]) }
             else { Value::List(value_data.iter().map(|&b| Value::U8(b)).collect()) },
        2 => Value::String(String::from_utf8_lossy(value_data).trim_end_matches('\0').to_string()),
        3 => if count == 1 { Value::U16(rw2_u16(value_data, 0, le)) }
             else { Value::List((0..count as usize).map(|i| Value::U16(rw2_u16(value_data, i*2, le))).collect()) },
        4 | 13 => if count == 1 { Value::U32(rw2_u32(value_data, 0, le)) }
                  else { Value::List((0..count as usize).map(|i| Value::U32(rw2_u32(value_data, i*4, le))).collect()) },
        5 => if count == 1 {
                let n = rw2_u32(value_data, 0, le);
                let d = rw2_u32(value_data, 4, le);
                Value::URational(n, d)
             } else {
                Value::List((0..count as usize).map(|i| {
                    Value::URational(rw2_u32(value_data, i*8, le), rw2_u32(value_data, i*8+4, le))
                }).collect())
             },
        6 => if count == 1 { Value::I16(value_data[0] as i8 as i16) }
             else { Value::List(value_data.iter().map(|&b| Value::I16(b as i8 as i16)).collect()) },
        7 => Value::Undefined(value_data.to_vec()),
        8 => if count == 1 { Value::I16(rw2_i16(value_data, 0, le)) }
             else { Value::List((0..count as usize).map(|i| Value::I16(rw2_i16(value_data, i*2, le))).collect()) },
        9 => if count == 1 {
                let v = rw2_u32(value_data, 0, le) as i32;
                Value::I32(v)
             } else {
                Value::List((0..count as usize).map(|i| Value::I32(rw2_u32(value_data, i*4, le) as i32)).collect())
             },
        10 => {
            let n = rw2_u32(value_data, 0, le) as i32;
            let d = rw2_u32(value_data, 4, le) as i32;
            if count == 1 { Value::IRational(n, d) }
            else { Value::List((0..count as usize).map(|i| {
                Value::IRational(rw2_u32(value_data, i*8, le) as i32, rw2_u32(value_data, i*8+4, le) as i32)
            }).collect()) }
        },
        11 => {
            let bits = rw2_u32(value_data, 0, le);
            if count == 1 { Value::F32(f32::from_bits(bits)) }
            else { Value::List((0..count as usize).map(|i| {
                Value::F32(f32::from_bits(rw2_u32(value_data, i*4, le)))
            }).collect()) }
        },
        12 => {
            let bits = if value_data.len() >= 8 {
                if le { u64::from_le_bytes(value_data[..8].try_into().unwrap_or([0;8])) }
                else  { u64::from_be_bytes(value_data[..8].try_into().unwrap_or([0;8])) }
            } else { 0 };
            if count == 1 { Value::F64(f64::from_bits(bits)) }
            else { Value::List((0..count as usize).map(|i| {
                let off = i * 8;
                let b = if off + 8 <= value_data.len() {
                    if le { u64::from_le_bytes(value_data[off..off+8].try_into().unwrap_or([0;8])) }
                    else  { u64::from_be_bytes(value_data[off..off+8].try_into().unwrap_or([0;8])) }
                } else { 0 };
                Value::F64(f64::from_bits(b))
            }).collect()) }
        },
        _ => return None,
    })
}

/// Parse WBInfo2 binary subdirectory from PanasonicRaw.pm::WBInfo2.
/// Format: int16u (every 2 bytes), FIRST_ENTRY=0
/// Indices: 0=NumWBEntries, 1=WBType1, 2..4=WB_RGBLevels1, 5=WBType2, ...
fn parse_wb_info2(data: &[u8], le: bool) -> Vec<Tag> {
    if data.len() < 2 { return vec![]; }
    let mut tags = Vec::new();
    // First value: NumWBEntries
    let num = rw2_u16(data, 0, le) as usize;
    tags.push(Tag {
        id: TagId::Text("NumWBEntries".into()),
        name: "NumWBEntries".into(),
        description: "Num WB Entries".into(),
        group: TagGroup { family0: "PanasonicRaw".into(), family1: "PanasonicRaw".into(), family2: "Image".into() },
        raw_value: Value::U16(num as u16),
        print_value: num.to_string(),
        priority: 0,
    });
    // Each WB entry: WBType (1 int16u) + WB_RGBLevels (3 int16u) = 4 int16u = 8 bytes
    // But they're spread at fixed byte offsets in the WBInfo2 binary data:
    // Entry i: WBType at byte_offset = (i*5+1)*2, WB_RGBLevels at byte_offset = (i*5+2)*2
    // From WBInfo2: 0=NumWBEntries, 1=WBType1, 2-4=WB_RGBLevels1, 5=WBType2, 6-8=WB_RGBLevels2...
    static WB_TYPE_NAMES: &[(&str, &str)] = &[
        ("0", "Unknown"), ("1", "Daylight"), ("2", "Cloudy"), ("3", "Tungsten"),
        ("4", "Flash (FZ7)"), ("5", "Flash"), ("6", "n/a"), ("7", "n/a"),
        ("8", "Custom"), ("9", "Fine Weather"), ("10", "Cloudy"), ("11", "Shade"),
        ("12", "Kelvin"), ("16", "AWBc"), ("20", "D55"), ("24", "ISO Studio Tungsten"),
    ];
    let wb_type_print_conv = |v: u16| -> String {
        // Use ExifTool's LightSource table (Panasonic WBInfo2 uses it)
        match v {
            0 => "Unknown".to_string(),
            1 => "Daylight".to_string(),
            2 => "Fluorescent".to_string(),
            3 => "Tungsten (Incandescent)".to_string(),
            4 => "Flash".to_string(),
            9 => "Fine Weather".to_string(),
            10 => "Cloudy".to_string(),
            11 => "Shade".to_string(),
            12 => "Daylight Fluorescent".to_string(),
            13 => "Day White Fluorescent".to_string(),
            14 => "Cool White Fluorescent".to_string(),
            15 => "White Fluorescent".to_string(),
            17 => "Standard Light A".to_string(),
            18 => "Standard Light B".to_string(),
            19 => "Standard Light C".to_string(),
            20 => "D55".to_string(),
            21 => "D65".to_string(),
            22 => "D75".to_string(),
            23 => "D50".to_string(),
            24 => "ISO Studio Tungsten".to_string(),
            255 => "Other".to_string(),
            _ => v.to_string(),
        }
    };
    let _ = WB_TYPE_NAMES; // avoid unused warning

    for i in 0..num.min(7) {
        // WBInfo2: indices: 0=NumWBEntries, then for each entry: WBType at idx=1+i*4, WB_RGBLevels[3] at idx=2+i*4..4+i*4
        // Wait, looking at Perl:
        // 0 => NumWBEntries, 1 => WBType1, 2 => WB_RGBLevels1 (int16u[3]),
        // 5 => WBType2, 6 => WB_RGBLevels2 (int16u[3]), ...
        // So entry i uses: WBType at byte=2*(1 + i*4), WB_RGBLevels at bytes starting at 2*(2+i*4)
        let type_off = 2 * (1 + i * 4);
        let rgb_off = 2 * (2 + i * 4);
        if type_off + 2 > data.len() || rgb_off + 6 > data.len() { break; }
        let wbt = rw2_u16(data, type_off, le);
        let r = rw2_u16(data, rgb_off,   le);
        let g = rw2_u16(data, rgb_off+2, le);
        let b = rw2_u16(data, rgb_off+4, le);
        let n = i + 1;
        let wbt_s = wb_type_print_conv(wbt);
        tags.push(Tag {
            id: TagId::Text(format!("WBType{}", n)),
            name: format!("WBType{}", n),
            description: format!("WB Type {}", n),
            group: TagGroup { family0: "PanasonicRaw".into(), family1: "PanasonicRaw".into(), family2: "Image".into() },
            raw_value: Value::U16(wbt),
            print_value: wbt_s,
            priority: 0,
        });
        tags.push(Tag {
            id: TagId::Text(format!("WB_RGBLevels{}", n)),
            name: format!("WB_RGBLevels{}", n),
            description: format!("WB RGB Levels {}", n),
            group: TagGroup { family0: "PanasonicRaw".into(), family1: "PanasonicRaw".into(), family2: "Image".into() },
            raw_value: Value::List(vec![Value::U16(r), Value::U16(g), Value::U16(b)]),
            print_value: format!("{} {} {}", r, g, b),
            priority: 0,
        });
    }
    tags
}

/// Parse DistortionInfo binary subdirectory from PanasonicRaw.pm::DistortionInfo.
/// FORMAT = 'int16s', FIRST_ENTRY=0.
/// DistortionParam02 at index 2, DistortionParam04 at 4, DistortionScale at 5,
/// DistortionCorrection at 7 (masked), DistortionParam08 at 8, etc.
fn parse_distortion_info(data: &[u8], le: bool) -> Vec<Tag> {
    let read_i16 = |idx: usize| -> i16 {
        let off = idx * 2;
        if off + 2 > data.len() { return 0; }
        rw2_i16(data, off, le)
    };
    let mk = |name: &'static str, desc: &'static str, raw: Value, print: String| -> Tag {
        Tag {
            id: TagId::Text(name.into()),
            name: name.into(),
            description: desc.into(),
            group: TagGroup { family0: "PanasonicRaw".into(), family1: "PanasonicRaw".into(), family2: "Image".into() },
            raw_value: raw,
            print_value: print,
            priority: 0,
        }
    };
    let mut tags = Vec::new();
    if data.len() < 6 { return tags; }

    // Index 2: DistortionParam02 = val / 32768
    let v2 = read_i16(2);
    let f2 = v2 as f64 / 32768.0;
    tags.push(mk("DistortionParam02", "Distortion Param 02",
        Value::F64(f2), crate::value::format_g15(f2)));

    // Index 4: DistortionParam04 = val / 32768
    if data.len() >= 10 {
        let v4 = read_i16(4);
        let f4 = v4 as f64 / 32768.0;
        tags.push(mk("DistortionParam04", "Distortion Param 04",
            Value::F64(f4), crate::value::format_g15(f4)));

        // Index 5: DistortionScale = 1 / (1 + val/32768)
        let v5 = read_i16(5);
        let f5 = 1.0 / (1.0 + v5 as f64 / 32768.0);
        tags.push(mk("DistortionScale", "Distortion Scale",
            Value::F64(f5), crate::value::format_g15(f5)));
    }

    // Index 7: DistortionCorrection — masked (low nibble), byte index = 7*2 = 14
    if data.len() >= 16 {
        let v7 = read_i16(7);
        let masked = (v7 as i16 & 0x0f) as i64;
        let pv = match masked { 0 => "Off", 1 => "On", _ => "Unknown" };
        tags.push(mk("DistortionCorrection", "Distortion Correction",
            Value::I32(masked as i32), pv.to_string()));

        // Index 8: DistortionParam08 = val / 32768
        if data.len() >= 18 {
            let v8 = read_i16(8);
            let f8 = v8 as f64 / 32768.0;
            tags.push(mk("DistortionParam08", "Distortion Param 08",
                Value::F64(f8), crate::value::format_g15(f8)));
        }

        // Index 9: DistortionParam09 = val / 32768
        if data.len() >= 20 {
            let v9 = read_i16(9);
            let f9 = v9 as f64 / 32768.0;
            tags.push(mk("DistortionParam09", "Distortion Param 09",
                Value::F64(f9), crate::value::format_g15(f9)));
        }

        // Index 11: DistortionParam11 = val / 32768
        if data.len() >= 24 {
            let v11 = read_i16(11);
            let f11 = v11 as f64 / 32768.0;
            tags.push(mk("DistortionParam11", "Distortion Param 11",
                Value::F64(f11), crate::value::format_g15(f11)));
        }
    }

    tags
}

/// Read an IFD entry (12 bytes starting at off) and return tag_id, dtype, count, offset, inline.
struct RW2IfdEntry {
    tag: u16,
    dtype: u16,
    count: u32,
    value_offset: u32,
    inline_data: [u8; 4],
}

fn rw2_parse_entry(data: &[u8], off: usize, le: bool) -> Option<RW2IfdEntry> {
    if off + 12 > data.len() { return None; }
    let tag = rw2_u16(data, off, le);
    let dtype = rw2_u16(data, off+2, le);
    let count = rw2_u32(data, off+4, le);
    let value_offset = rw2_u32(data, off+8, le);
    let mut inline_data = [0u8; 4];
    inline_data.copy_from_slice(&data[off+8..off+12]);
    Some(RW2IfdEntry { tag, dtype, count, value_offset, inline_data })
}

/// Read the Panasonic RW2 file.
///
/// RW2 uses magic 0x55 instead of 0x2A but is otherwise a TIFF file.
/// IFD0 uses PanasonicRaw-specific tags (not standard EXIF).
/// The JpgFromRaw (tag 0x002e) is an embedded JPEG containing the full
/// ExifIFD and MakerNotes metadata.
fn read_rw2(data: &[u8], le: bool) -> crate::error::Result<Vec<Tag>> {
    if data.len() < 8 { return Ok(vec![]); }

    // Get IFD0 offset from bytes 4-7
    let ifd0_off = rw2_u32(data, 4, le) as usize;
    if ifd0_off + 2 > data.len() { return Ok(vec![]); }

    let mut tags: Vec<Tag> = Vec::new();

    // Emit ExifByteOrder tag
    let bo_str = if le { "Little-endian (Intel, II)" } else { "Big-endian (Motorola, MM)" };
    tags.push(Tag {
        id: TagId::Text("ExifByteOrder".into()),
        name: "ExifByteOrder".into(),
        description: "Exif Byte Order".into(),
        group: TagGroup { family0: "EXIF".into(), family1: "IFD0".into(), family2: "ExifTool".into() },
        raw_value: Value::String(bo_str.to_string()),
        print_value: bo_str.to_string(),
        priority: 0,
    });

    let entry_count = rw2_u16(data, ifd0_off, le) as usize;
    let entries_start = ifd0_off + 2;
    let entry_count = entry_count.min((data.len().saturating_sub(entries_start)) / 12).min(200);

    // Collect JpgFromRaw data, WBInfo2 data, DistortionInfo data
    let mut jpg_from_raw: Option<Vec<u8>> = None;
    let mut wb_info2_data: Option<Vec<u8>> = None;
    let mut distortion_data: Option<Vec<u8>> = None;
    // Track ThumbnailOffset+Length for IFD1
    let mut thumb_offset: Option<u64> = None;
    let mut thumb_length: Option<u64> = None;

    for i in 0..entry_count {
        let eoff = entries_start + i * 12;
        let e = match rw2_parse_entry(data, eoff, le) {
            Some(e) => e,
            None => break,
        };

        // Handle special subdirectories first
        match e.tag {
            0x002e => {
                // JpgFromRaw: extract JPEG data
                let dtype = e.dtype;
                let count = e.count as usize;
                let elem = match dtype { 1|2|6|7 => 1, 3|8 => 2, 4|9|11|13 => 4, 5|10|12 => 8, _ => 1 };
                let total = elem * count;
                if total > 4 {
                    let off = e.value_offset as usize;
                    if off + total <= data.len() {
                        jpg_from_raw = Some(data[off..off+total].to_vec());
                    }
                }
                // Add JpgFromRaw tag for display
                tags.push(Tag {
                    id: TagId::Numeric(0x002e),
                    name: "JpgFromRaw".into(),
                    description: "Jpg From Raw".into(),
                    group: TagGroup { family0: "EXIF".into(), family1: "IFD0".into(), family2: "Preview".into() },
                    raw_value: Value::Binary(Vec::new()), // don't store raw bytes
                    print_value: format!("(Binary data {} bytes, use -b option to extract)", total),
                    priority: 0,
                });
                continue;
            }
            0x0027 => {
                // WBInfo2: binary subdirectory
                let dtype = e.dtype;
                let count = e.count as usize;
                let elem = match dtype { 1|2|6|7 => 1, 3|8 => 2, 4|9|11|13 => 4, 5|10|12 => 8, _ => 1 };
                let total = elem * count;
                let bytes = if total <= 4 {
                    e.inline_data[..total.min(4)].to_vec()
                } else {
                    let off = e.value_offset as usize;
                    if off + total <= data.len() {
                        data[off..off+total].to_vec()
                    } else { continue; }
                };
                wb_info2_data = Some(bytes);
                continue;
            }
            0x0119 => {
                // DistortionInfo: binary subdirectory
                let dtype = e.dtype;
                let count = e.count as usize;
                let elem = match dtype { 1|2|6|7 => 1, 3|8 => 2, 4|9|11|13 => 4, 5|10|12 => 8, _ => 1 };
                let total = elem * count;
                let bytes = if total <= 4 {
                    e.inline_data[..total.min(4)].to_vec()
                } else {
                    let off = e.value_offset as usize;
                    if off + total <= data.len() {
                        data[off..off+total].to_vec()
                    } else { continue; }
                };
                distortion_data = Some(bytes);
                continue;
            }
            // Skip tags that are subdirectories or handled elsewhere
            0x0013 | // WBInfo (old format)
            0x0120 | // CameraIFD
            0x02bc | // ApplicationNotes (XMP)
            0x83bb | // IPTC-NAA
            0x8769 | // ExifOffset (in embedded JPEG)
            0x8825   // GPS
            => continue,
            _ => {}
        }

        // Look up tag in PanasonicRaw table
        let tag_info = panasonic_raw_tag(e.tag);
        if tag_info.is_none() {
            // Skip unknown tags
            continue;
        }
        let (name, family2) = tag_info.unwrap();

        // Read value
        let value = match rw2_read_value(data, e.dtype, e.count, &e.inline_data, e.value_offset, le) {
            Some(v) => v,
            None => continue,
        };

        // Special value conversions
        let (final_value, print_value) = match e.tag {
            0x0001 => {
                // PanasonicRawVersion: undef bytes → display as string
                let s = match &value {
                    Value::Undefined(b) => String::from_utf8_lossy(b).to_string(),
                    Value::String(s) => s.clone(),
                    _ => value.to_display_string(),
                };
                (value, s)
            }
            0x001b => {
                // NoiseReductionParams: undef[n] read as int16u[n/2]
                let bytes = match &value {
                    Value::Undefined(b) => b.clone(),
                    _ => vec![],
                };
                let n = bytes.len() / 2;
                let vals: Vec<i64> = (0..n)
                    .map(|i| rw2_u16(&bytes, i*2, le) as i64)
                    .collect();
                let s = vals.iter().map(|v| v.to_string()).collect::<Vec<_>>().join(" ");
                let raw = Value::List(vals.iter().map(|&v| Value::U16(v as u16)).collect());
                (raw, s)
            }
            _ => {
                let pv = panasonic_raw_print_conv(e.tag, &value)
                    .or_else(|| crate::tags::exif::print_conv("IFD0", e.tag, &value))
                    .unwrap_or_else(|| value.to_display_string());
                (value, pv)
            }
        };

        // Track thumbnail info from IFD0 (if present)
        if e.tag == 0x0111 || e.tag == 0x0201 { // StripOffsets / JPEGInterchangeFormat
            thumb_offset = final_value.as_u64();
        }
        if e.tag == 0x0117 || e.tag == 0x0202 { // StripByteCounts / JPEGInterchangeFormatLength
            thumb_length = final_value.as_u64();
        }

        tags.push(Tag {
            id: TagId::Numeric(e.tag),
            name: name.to_string(),
            description: name.to_string(),
            group: TagGroup {
                family0: "EXIF".into(),
                family1: "IFD0".into(),
                family2: family2.to_string(),
            },
            raw_value: final_value,
            print_value,
            priority: 0,
        });
    }

    // Parse WBInfo2 binary subdirectory
    if let Some(wb_data) = wb_info2_data {
        tags.extend(parse_wb_info2(&wb_data, le));
    }

    // Parse DistortionInfo binary subdirectory
    if let Some(dist_data) = distortion_data {
        tags.extend(parse_distortion_info(&dist_data, le));
    }

    // Process embedded JpgFromRaw: extract all metadata from the embedded JPEG.
    // This is where ExifIFD, MakerNotes, PrintIM, etc. come from in RW2 files.
    if let Some(jpg_data) = jpg_from_raw {
        if let Ok(jpg_tags) = crate::formats::jpeg::read_jpeg(&jpg_data) {
            // Merge JPEG metadata into our tags.
            // Skip tags already present from IFD0 to avoid duplicates.
            // Also skip File-group tags from the embedded JPEG.
            let existing_names: std::collections::HashSet<String> = tags.iter()
                .map(|t| t.name.clone())
                .collect();
            for t in jpg_tags {
                // Pass through JPEG SOF tags (EncodingProcess, ColorComponents, YCbCrSubSampling)
                // from the embedded JPEG as Perl does for RW2 files.
                if t.group.family0 == "File" {
                    match t.name.as_str() {
                        "EncodingProcess" | "ColorComponents" | "YCbCrSubSampling" => {
                            // Keep these: Perl includes them from the embedded JpgFromRaw
                        }
                        _ => continue,
                    }
                }
                if t.group.family0 == "Composite" { continue; }
                // Skip ExifByteOrder from embedded (already have it)
                if t.name == "ExifByteOrder" { continue; }
                // PanasonicTitle/PanasonicTitle2: skip if content is all zeros (Perl RawConv)
                if t.name == "PanasonicTitle" || t.name == "PanasonicTitle2" {
                    let is_empty = match &t.raw_value {
                        Value::Undefined(b) | Value::Binary(b) => b.iter().all(|&x| x == 0),
                        Value::String(s) => s.trim_end_matches('\0').is_empty(),
                        _ => false,
                    };
                    if is_empty { continue; }
                }
                // Skip IFD0 tags already extracted (Make, Model, etc.)
                if t.group.family1 == "IFD0" && existing_names.contains(&t.name) {
                    continue;
                }
                tags.push(t);
            }
        }
    }

    // Read IFD1 (thumbnail) if next_ifd_offset is non-zero
    // (The thumbnail IFD follows IFD0's entries list)
    let entries_end = entries_start + entry_count * 12;
    if entries_end + 4 <= data.len() {
        let next_ifd = rw2_u32(data, entries_end, le) as usize;
        if next_ifd > 0 && next_ifd + 2 <= data.len() {
            let ifd1_count = rw2_u16(data, next_ifd, le) as usize;
            let ifd1_start = next_ifd + 2;
            let ifd1_count = ifd1_count.min((data.len().saturating_sub(ifd1_start)) / 12).min(50);
            for i in 0..ifd1_count {
                let eoff = ifd1_start + i * 12;
                let e = match rw2_parse_entry(data, eoff, le) {
                    Some(e) => e,
                    None => break,
                };
                // For IFD1 we only care about thumbnail pointer tags
                match e.tag {
                    0x0201 => { // JPEGInterchangeFormat
                        if let Some(v) = rw2_read_value(data, e.dtype, e.count, &e.inline_data, e.value_offset, le) {
                            thumb_offset = v.as_u64();
                            tags.push(Tag {
                                id: TagId::Numeric(e.tag),
                                name: "ThumbnailOffset".into(),
                                description: "Thumbnail Offset".into(),
                                group: TagGroup { family0: "EXIF".into(), family1: "IFD1".into(), family2: "Image".into() },
                                raw_value: v,
                                print_value: thumb_offset.unwrap_or(0).to_string(),
                                priority: 0,
                            });
                        }
                    }
                    0x0202 => { // JPEGInterchangeFormatLength
                        if let Some(v) = rw2_read_value(data, e.dtype, e.count, &e.inline_data, e.value_offset, le) {
                            thumb_length = v.as_u64();
                            tags.push(Tag {
                                id: TagId::Numeric(e.tag),
                                name: "ThumbnailLength".into(),
                                description: "Thumbnail Length".into(),
                                group: TagGroup { family0: "EXIF".into(), family1: "IFD1".into(), family2: "Image".into() },
                                raw_value: v,
                                print_value: thumb_length.unwrap_or(0).to_string(),
                                priority: 0,
                            });
                        }
                    }
                    _ => {}
                }
            }
        }
    }

    // Add ThumbnailImage if we have offset+length
    if let (Some(off), Some(len)) = (thumb_offset, thumb_length) {
        let off = off as usize;
        let len = len as usize;
        if off > 0 && len > 0 && off + len <= data.len() {
            tags.push(Tag {
                id: TagId::Text("ThumbnailImage".into()),
                name: "ThumbnailImage".into(),
                description: "Thumbnail Image".into(),
                group: TagGroup { family0: "EXIF".into(), family1: "IFD1".into(), family2: "Image".into() },
                raw_value: Value::Binary(data[off..off+len].to_vec()),
                print_value: format!("(Binary data {} bytes, use -b option to extract)", len),
                priority: 0,
            });
        }
    }

    Ok(tags)
}

/// Process GeoTiff directory (tag 0x87AF) and extract semantic GeoKey tags.
///
/// GeoTiff stores geographic metadata in three special TIFF tags:
///   0x87AF GeoTiffDirectory  - array of uint16: header + key entries
///   0x87B0 GeoTiffDoubleParams - array of float64 referenced by keys
///   0x87B1 GeoTiffAsciiParams  - ASCII string referenced by keys
///
/// Each GeoKey entry is 4 uint16 values: [keyId, location, count, offset]
/// - location=0: value is stored in the offset field (short integer)
/// - location=0x87AF: value is in GeoTiffDirectory (shorts) at given offset
/// - location=0x87B0: value is in GeoTiffDoubleParams (doubles) at given offset
/// - location=0x87B1: value is in GeoTiffAsciiParams (string) at given offset+count
fn process_geotiff(tags: &mut Vec<Tag>) {
    // Extract the raw GeoTiff data
    let dir_vals: Vec<u16> = {
        let tag = tags.iter().find(|t| t.name == "GeoTiffDirectory");
        match tag {
            Some(t) => extract_u16_list(&t.raw_value),
            None => return, // No GeoTiff data
        }
    };

    let double_vals: Vec<f64> = {
        let tag = tags.iter().find(|t| t.name == "GeoTiffDoubleParams");
        match tag {
            Some(t) => extract_f64_list(&t.raw_value),
            None => vec![],
        }
    };

    let ascii_val: String = {
        let tag = tags.iter().find(|t| t.name == "GeoTiffAsciiParams");
        match tag {
            Some(t) => match &t.raw_value {
                Value::String(s) => s.clone(),
                _ => String::new(),
            },
            None => String::new(),
        }
    };

    // Parse GeoTiff header: [version, revision, minorRev, numEntries]
    if dir_vals.len() < 4 {
        return;
    }
    let version = dir_vals[0];
    let revision = dir_vals[1];
    let minor_rev = dir_vals[2];
    let num_entries = dir_vals[3] as usize;

    if dir_vals.len() < 4 + num_entries * 4 {
        return;
    }

    let mut geo_tags: Vec<Tag> = Vec::new();

    // Add GeoTiffVersion (synthetic tag, not a real GeoKey)
    let version_str = format!("{}.{}.{}", version, revision, minor_rev);
    geo_tags.push(make_geotiff_tag(1, "GeoTiffVersion", "GeoTiff Version",
        Value::String(version_str.clone()), version_str));

    // Process each GeoKey entry
    for i in 0..num_entries {
        let base = 4 + i * 4;
        let key_id  = dir_vals[base];
        let location = dir_vals[base + 1];
        let count   = dir_vals[base + 2] as usize;
        let offset  = dir_vals[base + 3] as usize;

        // Get the GeoKey name and any print conversion
        let (name, description) = geotiff_key_name(key_id);
        if name.is_empty() {
            continue; // Unknown key, skip
        }

        let (raw_val, print_val) = match location {
            0 => {
                // Value is stored directly in offset field (short integer)
                let v = offset as u16;
                let raw = Value::U16(v);
                let print = geotiff_print_conv(key_id, v as i64)
                    .unwrap_or_else(|| v.to_string());
                (raw, print)
            }
            0x87B0 => {
                // Value(s) from GeoTiffDoubleParams
                if offset + count > double_vals.len() {
                    continue;
                }
                if count == 1 {
                    let v = double_vals[offset];
                    let s = format_g15(v);
                    (Value::F64(v), s)
                } else {
                    let vals: Vec<Value> = double_vals[offset..offset + count]
                        .iter().map(|&v| Value::F64(v)).collect();
                    let s = double_vals[offset..offset + count]
                        .iter().map(|&v| format_g15(v)).collect::<Vec<_>>().join(" ");
                    (Value::List(vals), s)
                }
            }
            0x87B1 => {
                // Value from GeoTiffAsciiParams string
                // offset = start index, count = length (including trailing '|' or '\0')
                let start = offset;
                let end = (start + count).min(ascii_val.len());
                let mut s = ascii_val[start..end].to_string();
                // Remove trailing '|' or '\0' terminator
                if s.ends_with('|') || s.ends_with('\0') {
                    s.pop();
                }
                (Value::String(s.clone()), s)
            }
            0x87AF => {
                // Value from GeoTiffDirectory itself (short array)
                if offset + count > dir_vals.len() {
                    continue;
                }
                if count == 1 {
                    let v = dir_vals[offset];
                    let raw = Value::U16(v);
                    let print = geotiff_print_conv(key_id, v as i64)
                        .unwrap_or_else(|| v.to_string());
                    (raw, print)
                } else {
                    let vals: Vec<Value> = dir_vals[offset..offset + count]
                        .iter().map(|&v| Value::U16(v)).collect();
                    let s = vals.iter().map(|v| v.to_display_string()).collect::<Vec<_>>().join(" ");
                    (Value::List(vals), s)
                }
            }
            _ => continue, // Unknown location
        };

        geo_tags.push(make_geotiff_tag(key_id, name, description, raw_val, print_val));
    }

    // Remove raw GeoTiff block tags (they are replaced by semantic GeoKey tags)
    tags.retain(|t| {
        t.name != "GeoTiffDirectory"
            && t.name != "GeoTiffDoubleParams"
            && t.name != "GeoTiffAsciiParams"
    });

    tags.extend(geo_tags);
}

/// Create a GeoTiff semantic tag.
fn make_geotiff_tag(key_id: u16, name: &str, description: &str, raw_val: Value, print_val: String) -> Tag {
    Tag {
        id: TagId::Numeric(key_id),
        name: name.to_string(),
        description: description.to_string(),
        group: TagGroup {
            family0: "EXIF".to_string(),
            family1: "IFD0".to_string(),
            family2: "Location".to_string(),
        },
        raw_value: raw_val,
        print_value: print_val,
        priority: 0,
    }
}

/// Format a double value like Perl's %.15g (15 significant digits).
fn format_g15(v: f64) -> String {
    crate::value::format_g15(v)
}

/// Extract a list of u16 values from a Value (handles U16, List of U16).
fn extract_u16_list(value: &Value) -> Vec<u16> {
    match value {
        Value::U16(v) => vec![*v],
        Value::List(items) => items.iter().filter_map(|item| {
            match item {
                Value::U16(v) => Some(*v),
                Value::U8(v) => Some(*v as u16),
                _ => None,
            }
        }).collect(),
        _ => vec![],
    }
}

/// Extract a list of f64 values from a Value.
fn extract_f64_list(value: &Value) -> Vec<f64> {
    match value {
        Value::F64(v) => vec![*v],
        Value::F32(v) => vec![*v as f64],
        Value::List(items) => items.iter().filter_map(|item| {
            match item {
                Value::F64(v) => Some(*v),
                Value::F32(v) => Some(*v as f64),
                _ => None,
            }
        }).collect(),
        _ => vec![],
    }
}

/// Map a GeoKey ID to (name, description).
/// Based on GeoTiff.pm key table.
fn geotiff_key_name(key_id: u16) -> (&'static str, &'static str) {
    match key_id {
        1024 => ("GTModelType", "GT Model Type"),
        1025 => ("GTRasterType", "GT Raster Type"),
        1026 => ("GTCitation", "GT Citation"),
        2048 => ("GeographicType", "Geographic Type"),
        2049 => ("GeogCitation", "Geog Citation"),
        2050 => ("GeogGeodeticDatum", "Geog Geodetic Datum"),
        2051 => ("GeogPrimeMeridian", "Geog Prime Meridian"),
        2052 => ("GeogLinearUnits", "Geog Linear Units"),
        2053 => ("GeogLinearUnitSize", "Geog Linear Unit Size"),
        2054 => ("GeogAngularUnits", "Geog Angular Units"),
        2055 => ("GeogAngularUnitSize", "Geog Angular Unit Size"),
        2056 => ("GeogEllipsoid", "Geog Ellipsoid"),
        2057 => ("GeogSemiMajorAxis", "Geog Semi Major Axis"),
        2058 => ("GeogSemiMinorAxis", "Geog Semi Minor Axis"),
        2059 => ("GeogInvFlattening", "Geog Inv Flattening"),
        2060 => ("GeogAzimuthUnits", "Geog Azimuth Units"),
        2061 => ("GeogPrimeMeridianLong", "Geog Prime Meridian Long"),
        2062 => ("GeogToWGS84", "Geog To WGS84"),
        3072 => ("ProjectedCSType", "Projected CS Type"),
        3073 => ("PCSCitation", "PCS Citation"),
        3074 => ("Projection", "Projection"),
        3075 => ("ProjCoordTrans", "Proj Coord Trans"),
        3076 => ("ProjLinearUnits", "Proj Linear Units"),
        3077 => ("ProjLinearUnitSize", "Proj Linear Unit Size"),
        3078 => ("ProjStdParallel1", "Proj Std Parallel 1"),
        3079 => ("ProjStdParallel2", "Proj Std Parallel 2"),
        3080 => ("ProjNatOriginLong", "Proj Nat Origin Long"),
        3081 => ("ProjNatOriginLat", "Proj Nat Origin Lat"),
        3082 => ("ProjFalseEasting", "Proj False Easting"),
        3083 => ("ProjFalseNorthing", "Proj False Northing"),
        3084 => ("ProjFalseOriginLong", "Proj False Origin Long"),
        3085 => ("ProjFalseOriginLat", "Proj False Origin Lat"),
        3086 => ("ProjFalseOriginEasting", "Proj False Origin Easting"),
        3087 => ("ProjFalseOriginNorthing", "Proj False Origin Northing"),
        3088 => ("ProjCenterLong", "Proj Center Long"),
        3089 => ("ProjCenterLat", "Proj Center Lat"),
        3090 => ("ProjCenterEasting", "Proj Center Easting"),
        3091 => ("ProjCenterNorthing", "Proj Center Northing"),
        3092 => ("ProjScaleAtNatOrigin", "Proj Scale At Nat Origin"),
        3093 => ("ProjScaleAtCenter", "Proj Scale At Center"),
        3094 => ("ProjAzimuthAngle", "Proj Azimuth Angle"),
        3095 => ("ProjStraightVertPoleLong", "Proj Straight Vert Pole Long"),
        4096 => ("VerticalCSType", "Vertical CS Type"),
        4097 => ("VerticalCitation", "Vertical Citation"),
        4098 => ("VerticalDatum", "Vertical Datum"),
        4099 => ("VerticalUnits", "Vertical Units"),
        _ => ("", ""),
    }
}

/// Apply print conversion for GeoTiff keys.
/// Uses the generated print_conv table keyed by ("GeoTiff", key_id).
/// Falls back to inline tables for keys not in the generated table.
fn geotiff_print_conv(key_id: u16, value: i64) -> Option<String> {
    // Try generated table first (covers GTModelType, GTRasterType, GeogPrimeMeridian, etc.)
    if let Some(s) = crate::tags::print_conv_generated::print_conv("GeoTiff", key_id, value) {
        return Some(s.to_string());
    }

    // Keys with large tables not included in generated file:
    // GeographicType (2048), GeogGeodeticDatum (2050), ProjectedCSType (3072), Projection (3074)
    match key_id {
        // GeographicType (epsg_gcs codes + User Defined)
        2048 => geotiff_epsg_gcs(value),
        // GeogGeodeticDatum (epsg_datum codes + User Defined)
        2050 => geotiff_epsg_datum(value),
        // ProjectedCSType (epsg_pcs codes + User Defined)
        3072 => geotiff_epsg_pcs(value),
        // Projection (epsg_proj codes + User Defined)
        3074 => geotiff_epsg_proj(value),
        _ => None,
    }
}

/// GeographicType print conversion (EPSG GCS codes).
/// Contains the most common values; 32767 = User Defined.
fn geotiff_epsg_gcs(value: i64) -> Option<String> {
    let s = match value {
        4001 => "Airy 1830", 4002 => "Airy Modified 1849",
        4003 => "Australian National Spheroid", 4004 => "Bessel 1841",
        4005 => "Bessel Modified", 4006 => "Bessel Namibia",
        4007 => "Clarke 1858", 4008 => "Clarke 1866",
        4009 => "Clarke 1866 Michigan", 4010 => "Clarke 1880 Benoit",
        4011 => "Clarke 1880 IGN", 4012 => "Clarke 1880 RGS",
        4013 => "Clarke 1880 Arc", 4014 => "Clarke 1880 SGA 1922",
        4015 => "Everest 1830 1937 Adjustment", 4016 => "Everest 1830 1967 Definition",
        4017 => "Everest 1830 1975 Definition", 4018 => "Everest 1830 Modified",
        4019 => "GRS 1980", 4020 => "Helmert 1906",
        4021 => "Indonesian National Spheroid", 4022 => "International 1924",
        4023 => "International 1967", 4024 => "Krassowsky 1940",
        4025 => "NWL9D", 4026 => "NWL10D", 4027 => "Plessis 1817",
        4028 => "Struve 1860", 4029 => "War Office", 4030 => "WGS84",
        4031 => "GEM10C", 4032 => "OSU86F", 4033 => "OSU91A",
        4034 => "Clarke 1880", 4035 => "Sphere",
        4120 => "Greek", 4121 => "GGRS87", 4123 => "KKJ", 4124 => "RT90",
        4133 => "EST92", 4815 => "Greek Athens",
        4201 => "Adindan", 4202 => "AGD66", 4203 => "AGD84",
        4204 => "Ain el Abd", 4205 => "Afgooye", 4206 => "Agadez",
        4267 => "NAD27", 4269 => "NAD83", 4277 => "OSGB 1936",
        4278 => "OSGB70", 4279 => "OS SN 1980",
        4283 => "GDA94", 4289 => "Amersfoort",
        4291 => "SAD69", 4292 => "Sapper Hill 1943",
        4293 => "Schwarzeck", 4297 => "Moznet",
        4298 => "Indian 1954", 4300 => "TM65",
        4301 => "Tokyo", 4302 => "Trinidad 1903",
        4303 => "TC 1948", 4304 => "Voirol 1875",
        4306 => "Bern 1938", 4307 => "Nord Sahara 1959",
        4308 => "Stockholm 1938", 4309 => "Yacare",
        4310 => "Yoff", 4311 => "Zanderij",
        4312 => "MGI", 4313 => "Belge 1972",
        4314 => "DHDN", 4315 => "Conakry 1905",
        4317 => "Dealul Piscului 1970", 4318 => "NGN",
        4319 => "KUDAMS", 4322 => "WGS 72",
        4324 => "WGS 72BE", 4326 => "WGS 84",
        32767 => "User Defined",
        _ => return None,
    };
    Some(s.to_string())
}

/// GeogGeodeticDatum print conversion (EPSG datum codes).
fn geotiff_epsg_datum(value: i64) -> Option<String> {
    let s = match value {
        6001 => "Airy 1830", 6002 => "Airy Modified 1849",
        6003 => "Australian National Spheroid", 6004 => "Bessel 1841",
        6005 => "Bessel Modified", 6006 => "Bessel Namibia",
        6007 => "Clarke 1858", 6008 => "Clarke 1866",
        6009 => "Clarke 1866 Michigan", 6010 => "Clarke 1880 Benoit",
        6011 => "Clarke 1880 IGN", 6012 => "Clarke 1880 RGS",
        6013 => "Clarke 1880 Arc", 6014 => "Clarke 1880 SGA 1922",
        6015 => "Everest 1830 1937 Adjustment", 6016 => "Everest 1830 1967 Definition",
        6017 => "Everest 1830 1975 Definition", 6018 => "Everest 1830 Modified",
        6019 => "GRS 1980", 6020 => "Helmert 1906",
        6021 => "Indonesian National Spheroid", 6022 => "International 1924",
        6023 => "International 1967", 6024 => "Krassowsky 1960",
        6025 => "NWL9D", 6026 => "NWL10D", 6027 => "Plessis 1817",
        6028 => "Struve 1860", 6029 => "War Office", 6030 => "WGS84",
        6031 => "GEM10C", 6032 => "OSU86F", 6033 => "OSU91A",
        6034 => "Clarke 1880", 6035 => "Sphere",
        6201 => "Adindan", 6202 => "AGD66", 6203 => "AGD84",
        6204 => "Ain el Abd", 6205 => "Afgooye", 6206 => "Agadez",
        6267 => "NAD27", 6269 => "NAD83", 6277 => "OSGB 1936",
        6278 => "OSGB70", 6279 => "OS SN 1980",
        6283 => "GDA94", 6289 => "Amersfoort",
        6291 => "SAD69", 6301 => "Tokyo",
        6314 => "DHDN", 6322 => "WGS 72",
        6324 => "WGS 72BE", 6326 => "WGS 84",
        32767 => "User Defined",
        _ => return None,
    };
    Some(s.to_string())
}

/// ProjectedCSType print conversion (EPSG PCS codes).
fn geotiff_epsg_pcs(value: i64) -> Option<String> {
    // WGS84 UTM zones 1N-60N (32601-32660)
    if value >= 32601 && value <= 32660 {
        return Some(format!("WGS84 UTM zone {}N", value - 32600));
    }
    // WGS84 UTM zones 1S-60S (32701-32760)
    if value >= 32701 && value <= 32760 {
        return Some(format!("WGS84 UTM zone {}S", value - 32700));
    }
    let s = match value {
        20137 => "Adindan UTM zone 37N", 20138 => "Adindan UTM zone 38N",
        20248 => "AGD66 AMG zone 48", 20249 => "AGD66 AMG zone 49",
        20250 => "AGD66 AMG zone 50", 20251 => "AGD66 AMG zone 51",
        20252 => "AGD66 AMG zone 52", 20253 => "AGD66 AMG zone 53",
        20254 => "AGD66 AMG zone 54", 20255 => "AGD66 AMG zone 55",
        20256 => "AGD66 AMG zone 56", 20257 => "AGD66 AMG zone 57",
        20258 => "AGD66 AMG zone 58",
        26701 => "NAD27 UTM zone 1N", 26702 => "NAD27 UTM zone 2N",
        26703 => "NAD27 UTM zone 3N", 26704 => "NAD27 UTM zone 4N",
        26705 => "NAD27 UTM zone 5N", 26706 => "NAD27 UTM zone 6N",
        26707 => "NAD27 UTM zone 7N", 26708 => "NAD27 UTM zone 8N",
        26709 => "NAD27 UTM zone 9N", 26710 => "NAD27 UTM zone 10N",
        26711 => "NAD27 UTM zone 11N", 26712 => "NAD27 UTM zone 12N",
        26713 => "NAD27 UTM zone 13N", 26714 => "NAD27 UTM zone 14N",
        26715 => "NAD27 UTM zone 15N", 26716 => "NAD27 UTM zone 16N",
        26717 => "NAD27 UTM zone 17N", 26718 => "NAD27 UTM zone 18N",
        26719 => "NAD27 UTM zone 19N", 26720 => "NAD27 UTM zone 20N",
        26721 => "NAD27 UTM zone 21N", 26722 => "NAD27 UTM zone 22N",
        26729 => "NAD27 Alabama East", 26730 => "NAD27 Alabama West",
        26903 => "NAD83 UTM zone 3N", 26904 => "NAD83 UTM zone 4N",
        26905 => "NAD83 UTM zone 5N", 26906 => "NAD83 UTM zone 6N",
        26907 => "NAD83 UTM zone 7N", 26908 => "NAD83 UTM zone 8N",
        26909 => "NAD83 UTM zone 9N", 26910 => "NAD83 UTM zone 10N",
        26911 => "NAD83 UTM zone 11N", 26912 => "NAD83 UTM zone 12N",
        26913 => "NAD83 UTM zone 13N", 26914 => "NAD83 UTM zone 14N",
        26915 => "NAD83 UTM zone 15N", 26916 => "NAD83 UTM zone 16N",
        26917 => "NAD83 UTM zone 17N", 26918 => "NAD83 UTM zone 18N",
        26919 => "NAD83 UTM zone 19N", 26920 => "NAD83 UTM zone 20N",
        26921 => "NAD83 UTM zone 21N", 26922 => "NAD83 UTM zone 22N",
        26923 => "NAD83 UTM zone 23N",
        32767 => "User Defined",
        _ => return None,
    };
    Some(s.to_string())
}

/// Projection print conversion (EPSG projection codes).
fn geotiff_epsg_proj(value: i64) -> Option<String> {
    let s = match value {
        10101 => "Alabama CS27 East", 10102 => "Alabama CS27 West",
        10131 => "Alabama CS83 East", 10132 => "Alabama CS83 West",
        16001 => "UTM zone 1N", 16002 => "UTM zone 2N",
        16003 => "UTM zone 3N", 16004 => "UTM zone 4N",
        16005 => "UTM zone 5N", 16006 => "UTM zone 6N",
        16007 => "UTM zone 7N", 16008 => "UTM zone 8N",
        16009 => "UTM zone 9N", 16010 => "UTM zone 10N",
        16011 => "UTM zone 11N", 16012 => "UTM zone 12N",
        16013 => "UTM zone 13N", 16014 => "UTM zone 14N",
        16015 => "UTM zone 15N", 16016 => "UTM zone 16N",
        16017 => "UTM zone 17N", 16018 => "UTM zone 18N",
        16019 => "UTM zone 19N", 16020 => "UTM zone 20N",
        16021 => "UTM zone 21N", 16022 => "UTM zone 22N",
        16023 => "UTM zone 23N", 16024 => "UTM zone 24N",
        16025 => "UTM zone 25N", 16026 => "UTM zone 26N",
        16027 => "UTM zone 27N", 16028 => "UTM zone 28N",
        16029 => "UTM zone 29N", 16030 => "UTM zone 30N",
        16031 => "UTM zone 31N", 16032 => "UTM zone 32N",
        16033 => "UTM zone 33N", 16034 => "UTM zone 34N",
        16035 => "UTM zone 35N", 16036 => "UTM zone 36N",
        16037 => "UTM zone 37N", 16038 => "UTM zone 38N",
        16039 => "UTM zone 39N", 16040 => "UTM zone 40N",
        16041 => "UTM zone 41N", 16042 => "UTM zone 42N",
        16043 => "UTM zone 43N", 16044 => "UTM zone 44N",
        16045 => "UTM zone 45N", 16046 => "UTM zone 46N",
        16047 => "UTM zone 47N", 16048 => "UTM zone 48N",
        16049 => "UTM zone 49N", 16050 => "UTM zone 50N",
        16051 => "UTM zone 51N", 16052 => "UTM zone 52N",
        16053 => "UTM zone 53N", 16054 => "UTM zone 54N",
        16055 => "UTM zone 55N", 16056 => "UTM zone 56N",
        16057 => "UTM zone 57N", 16058 => "UTM zone 58N",
        16059 => "UTM zone 59N", 16060 => "UTM zone 60N",
        16101 => "UTM zone 1S", 16102 => "UTM zone 2S",
        16103 => "UTM zone 3S", 16104 => "UTM zone 4S",
        16105 => "UTM zone 5S", 16106 => "UTM zone 6S",
        16107 => "UTM zone 7S", 16108 => "UTM zone 8S",
        16109 => "UTM zone 9S", 16110 => "UTM zone 10S",
        16111 => "UTM zone 11S", 16112 => "UTM zone 12S",
        16113 => "UTM zone 13S", 16114 => "UTM zone 14S",
        16115 => "UTM zone 15S", 16116 => "UTM zone 16S",
        16117 => "UTM zone 17S", 16118 => "UTM zone 18S",
        16119 => "UTM zone 19S", 16120 => "UTM zone 20S",
        16121 => "UTM zone 21S", 16122 => "UTM zone 22S",
        16123 => "UTM zone 23S", 16124 => "UTM zone 24S",
        16125 => "UTM zone 25S", 16126 => "UTM zone 26S",
        16127 => "UTM zone 27S", 16128 => "UTM zone 28S",
        16129 => "UTM zone 29S", 16130 => "UTM zone 30S",
        16131 => "UTM zone 31S", 16132 => "UTM zone 32S",
        16133 => "UTM zone 33S", 16134 => "UTM zone 34S",
        16135 => "UTM zone 35S", 16136 => "UTM zone 36S",
        16137 => "UTM zone 37S", 16138 => "UTM zone 38S",
        16139 => "UTM zone 39S", 16140 => "UTM zone 40S",
        16141 => "UTM zone 41S", 16142 => "UTM zone 42S",
        16143 => "UTM zone 43S", 16144 => "UTM zone 44S",
        16145 => "UTM zone 45S", 16146 => "UTM zone 46S",
        16147 => "UTM zone 47S", 16148 => "UTM zone 48S",
        16149 => "UTM zone 49S", 16150 => "UTM zone 50S",
        16151 => "UTM zone 51S", 16152 => "UTM zone 52S",
        16153 => "UTM zone 53S", 16154 => "UTM zone 54S",
        16155 => "UTM zone 55S", 16156 => "UTM zone 56S",
        16157 => "UTM zone 57S", 16158 => "UTM zone 58S",
        16159 => "UTM zone 59S", 16160 => "UTM zone 60S",
        32767 => "User Defined",
        _ => return None,
    };
    Some(s.to_string())
}

/// Read a BigTIFF IFD and return tags.
/// BigTIFF IFD entry format (20 bytes):
///   tag(2) type(2) count(8) value_or_offset(8)
/// Value fits inline if count * type_size <= 8.
fn read_bigtiff_ifd(data: &[u8], ifd_offset: usize, is_le: bool) -> Result<Vec<Tag>> {
    use crate::tags::exif as exif_tags;

    if ifd_offset + 8 > data.len() {
        return Ok(vec![]);
    }

    // BigTIFF: entry count is 8 bytes
    let entry_count = btf_read_u64(data, ifd_offset, is_le) as usize;

    let entries_start = ifd_offset + 8;
    let entry_size = 20usize; // tag(2) + type(2) + count(8) + offset(8)
    let max_entries = (data.len().saturating_sub(entries_start)) / entry_size;
    let entry_count = entry_count.min(max_entries).min(1000);

    let mut tags = Vec::new();

    for i in 0..entry_count {
        let eoff = entries_start + i * entry_size;
        if eoff + entry_size > data.len() { break; }

        let tag = btf_read_u16(data, eoff, is_le);
        let dtype = btf_read_u16(data, eoff+2, is_le);
        let count = btf_read_u64(data, eoff+4, is_le);
        let raw_offset_bytes = &data[eoff+12..eoff+20];

        let elem_size: usize = match dtype {
            1 | 2 | 6 | 7 => 1,
            3 | 8 => 2,
            4 | 9 | 11 | 13 => 4,
            5 | 10 | 12 => 8,
            _ => continue,
        };
        let total_size = elem_size.saturating_mul(count as usize);
        if total_size == 0 { continue; }

        // Get value data (inline if fits in 8 bytes, otherwise at offset)
        let value_slice: Vec<u8> = if total_size <= 8 {
            raw_offset_bytes[..total_size.min(8)].to_vec()
        } else {
            let offset = btf_read_u64(raw_offset_bytes, 0, is_le) as usize;
            if offset + total_size > data.len() { continue; }
            data[offset..offset + total_size].to_vec()
        };

        let value = match bigtiff_parse_value(&value_slice, dtype, count as usize, is_le) {
            Some(v) => v,
            None => continue,
        };

        let (name, description) = {
            match exif_tags::lookup("IFD0", tag) {
                Some(i) => (i.name.to_string(), i.description.to_string()),
                None => match exif_tags::lookup_generated(tag) {
                    Some((n, d)) => (n.to_string(), d.to_string()),
                    None => (format!("Tag0x{:04X}", tag), format!("Unknown 0x{:04X}", tag)),
                }
            }
        };

        let print_value = exif_tags::print_conv("IFD0", tag, &value)
            .or_else(|| value.as_u64().and_then(|v|
                crate::tags::print_conv_generated::print_conv_by_name(&name, v as i64))
                .map(|s| s.to_string()))
            .unwrap_or_else(|| value.to_display_string());

        tags.push(Tag {
            id: TagId::Numeric(tag),
            name,
            description,
            group: TagGroup {
                family0: "EXIF".into(),
                family1: "IFD0".into(),
                family2: "Image".into(),
            },
            raw_value: value,
            print_value,
            priority: 0,
        });
    }

    Ok(tags)
}

fn bigtiff_parse_value(data: &[u8], dtype: u16, count: usize, is_le: bool) -> Option<Value> {
    match dtype {
        1 => {
            if data.is_empty() { return None; }
            if count == 1 { Some(Value::U8(data[0])) }
            else { Some(Value::List(data.iter().map(|&b| Value::U8(b)).collect())) }
        }
        2 => Some(Value::String(String::from_utf8_lossy(data).trim_end_matches('\0').to_string())),
        3 => {
            if count == 1 { Some(Value::U16(btf_read_u16(data, 0, is_le))) }
            else { Some(Value::List((0..count).map(|i| Value::U16(btf_read_u16(data, i*2, is_le))).collect())) }
        }
        4 | 13 => {
            if count == 1 { Some(Value::U32(btf_read_u32(data, 0, is_le))) }
            else { Some(Value::List((0..count).map(|i| Value::U32(btf_read_u32(data, i*4, is_le))).collect())) }
        }
        5 => {
            if count == 1 {
                Some(Value::URational(btf_read_u32(data, 0, is_le), btf_read_u32(data, 4, is_le)))
            } else {
                Some(Value::List((0..count).map(|i| {
                    Value::URational(btf_read_u32(data, i*8, is_le), btf_read_u32(data, i*8+4, is_le))
                }).collect()))
            }
        }
        7 => Some(Value::Undefined(data.to_vec())),
        _ => None,
    }
}

fn btf_read_u16(d: &[u8], off: usize, is_le: bool) -> u16 {
    if off + 2 > d.len() { return 0; }
    if is_le { u16::from_le_bytes([d[off], d[off+1]]) }
    else { u16::from_be_bytes([d[off], d[off+1]]) }
}

fn btf_read_u32(d: &[u8], off: usize, is_le: bool) -> u32 {
    if off + 4 > d.len() { return 0; }
    if is_le { u32::from_le_bytes([d[off], d[off+1], d[off+2], d[off+3]]) }
    else { u32::from_be_bytes([d[off], d[off+1], d[off+2], d[off+3]]) }
}

fn btf_read_u64(d: &[u8], off: usize, is_le: bool) -> u64 {
    if off + 8 > d.len() { return 0; }
    if is_le { u64::from_le_bytes([d[off], d[off+1], d[off+2], d[off+3], d[off+4], d[off+5], d[off+6], d[off+7]]) }
    else { u64::from_be_bytes([d[off], d[off+1], d[off+2], d[off+3], d[off+4], d[off+5], d[off+6], d[off+7]]) }
}