We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dc9e0dd commit ea109bcCopy full SHA for ea109bc
docs/api/namedtuples.rst
@@ -10,3 +10,13 @@ Thumbnail
10
----------
11
12
.. autoclass:: rawpy.Thumbnail
13
+
14
+Other
15
+----------
16
17
+.. autoclass:: rawpy.Other
18
19
+Lens
20
21
22
+.. autoclass:: rawpy.Lens
examples/basic_process.py
@@ -33,6 +33,8 @@ def main():
33
with rawpy.imread(TEST_IMAGE) as raw:
34
print(f" Raw type: {raw.raw_type}")
35
print(f" Image size: {raw.sizes.width}x{raw.sizes.height}")
36
+ print(f" Image metadata: {raw.other}")
37
+ print(f" Image lens metadata: {raw.lens}")
38
39
# Convert RAW to RGB using default parameters
40
rgb = raw.postprocess()
0 commit comments