本文整理匯總了Java中org.apache.commons.imaging.formats.tiff.fieldtypes.FieldType.SHORT屬性的典型用法代碼示例。如果您正苦於以下問題:Java FieldType.SHORT屬性的具體用法?Java FieldType.SHORT怎麽用?Java FieldType.SHORT使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類org.apache.commons.imaging.formats.tiff.fieldtypes.FieldType
的用法示例。
在下文中一共展示了FieldType.SHORT屬性的6個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getFieldValue
public int[] getFieldValue(final TagInfoShortOrLong tag, final boolean mustExist)
throws ImageReadException {
final TiffField field = findField(tag);
if (field == null) {
if (mustExist) {
throw new ImageReadException("Required field \"" + tag.name
+ "\" is missing");
} else {
return null;
}
}
if (!tag.dataTypes.contains(field.getFieldType())) {
if (mustExist) {
throw new ImageReadException("Required field \"" + tag.name
+ "\" has incorrect type " + field.getFieldType().getName());
} else {
return null;
}
}
final byte[] bytes = field.getByteArrayValue();
if (field.getFieldType() == FieldType.SHORT) {
return ByteConversions.toUInt16s(bytes, field.getByteOrder());
} else {
return ByteConversions.toInts(bytes, field.getByteOrder());
}
}
示例2: add
public void add(final TagInfoShort tagInfo, final short... values)
throws ImageWriteException {
if (tagInfo.length > 0 && tagInfo.length != values.length) {
throw new ImageWriteException("Tag expects " + tagInfo.length
+ " value(s), not " + values.length);
}
final byte[] bytes = tagInfo.encodeValue(byteOrder, values);
final TiffOutputField tiffOutputField = new TiffOutputField(tagInfo.tag,
tagInfo, FieldType.SHORT,
values.length, bytes);
add(tiffOutputField);
}
示例3: add
public void add(final TagInfoShort tagInfo, final short value)
throws ImageWriteException {
if (tagInfo.length != 1) {
throw new ImageWriteException("Tag expects " + tagInfo.length
+ " value(s), not 1");
}
final byte[] bytes = tagInfo.encodeValue(byteOrder, value);
final TiffOutputField tiffOutputField = new TiffOutputField(tagInfo.tag,
tagInfo, FieldType.SHORT, 1, bytes);
add(tiffOutputField);
}
示例4: TagInfoShort
public TagInfoShort(final String name, final int tag, final int length, final TiffDirectoryType directoryType) {
super(name, tag, FieldType.SHORT, length, directoryType);
}
示例5: TagInfoShorts
public TagInfoShorts(final String name, final int tag, final int length, final TiffDirectoryType directoryType) {
super(name, tag, FieldType.SHORT, length, directoryType);
}
示例6: TagInfoShort
public TagInfoShort(final String name, final int tag, final TiffDirectoryType directoryType) {
super(name, tag, FieldType.SHORT, 1, directoryType);
}