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
|
/*
* Copyright 2002-2012 Drew Noakes
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* More information about this project is available at:
*
* http://drewnoakes.com/code/exif/
* http://code.google.com/p/metadata-extractor/
*/
package com.drew.metadata.exif;
import com.drew.lang.annotations.NotNull;
import com.drew.metadata.Directory;
import java.util.HashMap;
/**
* Describes tags specific to Pentax and Asahi cameras.
*
* @author Drew Noakes http://drewnoakes.com
*/
public class PentaxMakernoteDirectory extends Directory
{
/**
* 0 = Auto
* 1 = Night-scene
* 2 = Manual
* 4 = Multiple
*/
public static final int TAG_PENTAX_CAPTURE_MODE = 0x0001;
/**
* 0 = Good
* 1 = Better
* 2 = Best
*/
public static final int TAG_PENTAX_QUALITY_LEVEL = 0x0002;
/**
* 2 = Custom
* 3 = Auto
*/
public static final int TAG_PENTAX_FOCUS_MODE = 0x0003;
/**
* 1 = Auto
* 2 = Flash on
* 4 = Flash off
* 6 = Red-eye Reduction
*/
public static final int TAG_PENTAX_FLASH_MODE = 0x0004;
/**
* 0 = Auto
* 1 = Daylight
* 2 = Shade
* 3 = Tungsten
* 4 = Fluorescent
* 5 = Manual
*/
public static final int TAG_PENTAX_WHITE_BALANCE = 0x0007;
/**
* (0 = Off)
*/
public static final int TAG_PENTAX_DIGITAL_ZOOM = 0x000A;
/**
* 0 = Normal
* 1 = Soft
* 2 = Hard
*/
public static final int TAG_PENTAX_SHARPNESS = 0x000B;
/**
* 0 = Normal
* 1 = Low
* 2 = High
*/
public static final int TAG_PENTAX_CONTRAST = 0x000C;
/**
* 0 = Normal
* 1 = Low
* 2 = High
*/
public static final int TAG_PENTAX_SATURATION = 0x000D;
/**
* 10 = ISO 100
* 16 = ISO 200
* 100 = ISO 100
* 200 = ISO 200
*/
public static final int TAG_PENTAX_ISO_SPEED = 0x0014;
/**
* 1 = Normal
* 2 = Black & White
* 3 = Sepia
*/
public static final int TAG_PENTAX_COLOUR = 0x0017;
/**
* See Print Image Matching for specification.
* http://www.ozhiker.com/electronics/pjmt/jpeg_info/pim.html
*/
public static final int TAG_PENTAX_PRINT_IMAGE_MATCHING_INFO = 0x0E00;
/**
* (String).
*/
public static final int TAG_PENTAX_TIME_ZONE = 0x1000;
/**
* (String).
*/
public static final int TAG_PENTAX_DAYLIGHT_SAVINGS = 0x1001;
@NotNull
protected static final HashMap<Integer, String> _tagNameMap = new HashMap<Integer, String>();
static
{
_tagNameMap.put(TAG_PENTAX_CAPTURE_MODE, "Capture Mode");
_tagNameMap.put(TAG_PENTAX_QUALITY_LEVEL, "Quality Level");
_tagNameMap.put(TAG_PENTAX_FOCUS_MODE, "Focus Mode");
_tagNameMap.put(TAG_PENTAX_FLASH_MODE, "Flash Mode");
_tagNameMap.put(TAG_PENTAX_WHITE_BALANCE, "White Balance");
_tagNameMap.put(TAG_PENTAX_DIGITAL_ZOOM, "Digital Zoom");
_tagNameMap.put(TAG_PENTAX_SHARPNESS, "Sharpness");
_tagNameMap.put(TAG_PENTAX_CONTRAST, "Contrast");
_tagNameMap.put(TAG_PENTAX_SATURATION, "Saturation");
_tagNameMap.put(TAG_PENTAX_ISO_SPEED, "ISO Speed");
_tagNameMap.put(TAG_PENTAX_COLOUR, "Colour");
_tagNameMap.put(TAG_PENTAX_PRINT_IMAGE_MATCHING_INFO, "Print Image Matching (PIM) Info");
_tagNameMap.put(TAG_PENTAX_TIME_ZONE, "Time Zone");
_tagNameMap.put(TAG_PENTAX_DAYLIGHT_SAVINGS, "Daylight Savings");
}
public PentaxMakernoteDirectory()
{
this.setDescriptor(new PentaxMakernoteDescriptor(this));
}
@NotNull
public String getName()
{
return "Pentax Makernote";
}
@NotNull
protected HashMap<Integer, String> getTagNameMap()
{
return _tagNameMap;
}
}
|