1 | /*
|
---|
2 | * Copyright 2002-2019 Drew Noakes and contributors
|
---|
3 | *
|
---|
4 | * Licensed under the Apache License, Version 2.0 (the "License");
|
---|
5 | * you may not use this file except in compliance with the License.
|
---|
6 | * You may obtain a copy of the License at
|
---|
7 | *
|
---|
8 | * http://www.apache.org/licenses/LICENSE-2.0
|
---|
9 | *
|
---|
10 | * Unless required by applicable law or agreed to in writing, software
|
---|
11 | * distributed under the License is distributed on an "AS IS" BASIS,
|
---|
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
---|
13 | * See the License for the specific language governing permissions and
|
---|
14 | * limitations under the License.
|
---|
15 | *
|
---|
16 | * More information about this project is available at:
|
---|
17 | *
|
---|
18 | * https://drewnoakes.com/code/exif/
|
---|
19 | * https://github.com/drewnoakes/metadata-extractor
|
---|
20 | */
|
---|
21 |
|
---|
22 | package com.drew.metadata.exif.makernotes;
|
---|
23 |
|
---|
24 | import com.drew.lang.annotations.NotNull;
|
---|
25 | import com.drew.lang.annotations.Nullable;
|
---|
26 | import com.drew.metadata.TagDescriptor;
|
---|
27 |
|
---|
28 | import static com.drew.metadata.exif.makernotes.SigmaMakernoteDirectory.*;
|
---|
29 |
|
---|
30 | /**
|
---|
31 | * Provides human-readable string representations of tag values stored in a {@link SigmaMakernoteDirectory}.
|
---|
32 | *
|
---|
33 | * @author Drew Noakes https://drewnoakes.com
|
---|
34 | */
|
---|
35 | @SuppressWarnings("WeakerAccess")
|
---|
36 | public class SigmaMakernoteDescriptor extends TagDescriptor<SigmaMakernoteDirectory>
|
---|
37 | {
|
---|
38 | public SigmaMakernoteDescriptor(@NotNull SigmaMakernoteDirectory directory)
|
---|
39 | {
|
---|
40 | super(directory);
|
---|
41 | }
|
---|
42 |
|
---|
43 | @Override
|
---|
44 | public String getDescription(int tagType)
|
---|
45 | {
|
---|
46 | switch (tagType) {
|
---|
47 | case TAG_EXPOSURE_MODE:
|
---|
48 | return getExposureModeDescription();
|
---|
49 | case TAG_METERING_MODE:
|
---|
50 | return getMeteringModeDescription();
|
---|
51 | }
|
---|
52 | return super.getDescription(tagType);
|
---|
53 | }
|
---|
54 |
|
---|
55 | @Nullable
|
---|
56 | private String getMeteringModeDescription()
|
---|
57 | {
|
---|
58 | String value = _directory.getString(TAG_METERING_MODE);
|
---|
59 | if (value == null || value.length() == 0)
|
---|
60 | return null;
|
---|
61 | switch (value.charAt(0)) {
|
---|
62 | case '8': return "Multi Segment";
|
---|
63 | case 'A': return "Average";
|
---|
64 | case 'C': return "Center Weighted Average";
|
---|
65 | default:
|
---|
66 | return value;
|
---|
67 | }
|
---|
68 | }
|
---|
69 |
|
---|
70 | @Nullable
|
---|
71 | private String getExposureModeDescription()
|
---|
72 | {
|
---|
73 | String value = _directory.getString(TAG_EXPOSURE_MODE);
|
---|
74 | if (value == null || value.length() == 0)
|
---|
75 | return null;
|
---|
76 | switch (value.charAt(0)) {
|
---|
77 | case 'A': return "Aperture Priority AE";
|
---|
78 | case 'M': return "Manual";
|
---|
79 | case 'P': return "Program AE";
|
---|
80 | case 'S': return "Shutter Speed Priority AE";
|
---|
81 | default:
|
---|
82 | return value;
|
---|
83 | }
|
---|
84 | }
|
---|
85 | }
|
---|