| 1 | /*
|
|---|
| 2 | * Copyright 2002-2015 Drew Noakes
|
|---|
| 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 | public class RicohMakernoteDirectory extends Directory
|
|---|
| 34 | {
|
|---|
| 35 | public static final int TAG_MAKERNOTE_DATA_TYPE = 0x0001;
|
|---|
| 36 | public static final int TAG_VERSION = 0x0002;
|
|---|
| 37 | public static final int TAG_PRINT_IMAGE_MATCHING_INFO = 0x0E00;
|
|---|
| 38 | public static final int TAG_RICOH_CAMERA_INFO_MAKERNOTE_SUB_IFD_POINTER = 0x2001;
|
|---|
| 39 |
|
|---|
| 40 | @NotNull
|
|---|
| 41 | protected static final HashMap<Integer, String> _tagNameMap = new HashMap<Integer, String>();
|
|---|
| 42 |
|
|---|
| 43 | static
|
|---|
| 44 | {
|
|---|
| 45 | _tagNameMap.put(TAG_MAKERNOTE_DATA_TYPE, "Makernote Data Type");
|
|---|
| 46 | _tagNameMap.put(TAG_VERSION, "Version");
|
|---|
| 47 | _tagNameMap.put(TAG_PRINT_IMAGE_MATCHING_INFO, "Print Image Matching (PIM) Info");
|
|---|
| 48 | _tagNameMap.put(TAG_RICOH_CAMERA_INFO_MAKERNOTE_SUB_IFD_POINTER, "Ricoh Camera Info Makernote Sub-IFD");
|
|---|
| 49 | }
|
|---|
| 50 |
|
|---|
| 51 | public RicohMakernoteDirectory()
|
|---|
| 52 | {
|
|---|
| 53 | this.setDescriptor(new RicohMakernoteDescriptor(this));
|
|---|
| 54 | }
|
|---|
| 55 |
|
|---|
| 56 | @Override
|
|---|
| 57 | @NotNull
|
|---|
| 58 | public String getName()
|
|---|
| 59 | {
|
|---|
| 60 | return "Ricoh Makernote";
|
|---|
| 61 | }
|
|---|
| 62 |
|
|---|
| 63 | @Override
|
|---|
| 64 | @NotNull
|
|---|
| 65 | protected HashMap<Integer, String> getTagNameMap()
|
|---|
| 66 | {
|
|---|
| 67 | return _tagNameMap;
|
|---|
| 68 | }
|
|---|
| 69 | }
|
|---|