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 | package com.drew.metadata.exif.makernotes;
|
---|
22 |
|
---|
23 | import com.drew.lang.annotations.NotNull;
|
---|
24 | import com.drew.metadata.Directory;
|
---|
25 |
|
---|
26 | import java.util.HashMap;
|
---|
27 |
|
---|
28 | /**
|
---|
29 | * Describes tags specific to Ricoh cameras.
|
---|
30 | *
|
---|
31 | * @author Drew Noakes https://drewnoakes.com
|
---|
32 | */
|
---|
33 | @SuppressWarnings("WeakerAccess")
|
---|
34 | public class RicohMakernoteDirectory extends Directory
|
---|
35 | {
|
---|
36 | public static final int TAG_MAKERNOTE_DATA_TYPE = 0x0001;
|
---|
37 | public static final int TAG_VERSION = 0x0002;
|
---|
38 | public static final int TAG_PRINT_IMAGE_MATCHING_INFO = 0x0E00;
|
---|
39 | public static final int TAG_RICOH_CAMERA_INFO_MAKERNOTE_SUB_IFD_POINTER = 0x2001;
|
---|
40 |
|
---|
41 | @NotNull
|
---|
42 | protected static final HashMap<Integer, String> _tagNameMap = new HashMap<Integer, String>();
|
---|
43 |
|
---|
44 | static
|
---|
45 | {
|
---|
46 | _tagNameMap.put(TAG_MAKERNOTE_DATA_TYPE, "Makernote Data Type");
|
---|
47 | _tagNameMap.put(TAG_VERSION, "Version");
|
---|
48 | _tagNameMap.put(TAG_PRINT_IMAGE_MATCHING_INFO, "Print Image Matching (PIM) Info");
|
---|
49 | _tagNameMap.put(TAG_RICOH_CAMERA_INFO_MAKERNOTE_SUB_IFD_POINTER, "Ricoh Camera Info Makernote Sub-IFD");
|
---|
50 | }
|
---|
51 |
|
---|
52 | public RicohMakernoteDirectory()
|
---|
53 | {
|
---|
54 | this.setDescriptor(new RicohMakernoteDescriptor(this));
|
---|
55 | }
|
---|
56 |
|
---|
57 | @Override
|
---|
58 | @NotNull
|
---|
59 | public String getName()
|
---|
60 | {
|
---|
61 | return "Ricoh Makernote";
|
---|
62 | }
|
---|
63 |
|
---|
64 | @Override
|
---|
65 | @NotNull
|
---|
66 | protected HashMap<Integer, String> getTagNameMap()
|
---|
67 | {
|
---|
68 | return _tagNameMap;
|
---|
69 | }
|
---|
70 | }
|
---|