當前位置: 首頁>>代碼示例>>Java>>正文


Java FieldType.SHORT屬性代碼示例

本文整理匯總了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());
    }
}
 
開發者ID:windwardadmin,項目名稱:android-awt,代碼行數:26,代碼來源:TiffDirectory.java

示例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);
}
 
開發者ID:windwardadmin,項目名稱:android-awt,代碼行數:12,代碼來源:TiffOutputDirectory.java

示例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);
}
 
開發者ID:apache,項目名稱:commons-imaging,代碼行數:11,代碼來源:TiffOutputDirectory.java

示例4: TagInfoShort

public TagInfoShort(final String name, final int tag, final int length, final TiffDirectoryType directoryType) {
    super(name, tag, FieldType.SHORT, length, directoryType);
}
 
開發者ID:windwardadmin,項目名稱:android-awt,代碼行數:3,代碼來源:TagInfoShort.java

示例5: TagInfoShorts

public TagInfoShorts(final String name, final int tag, final int length, final TiffDirectoryType directoryType) {
    super(name, tag, FieldType.SHORT, length, directoryType);
}
 
開發者ID:apache,項目名稱:commons-imaging,代碼行數:3,代碼來源:TagInfoShorts.java

示例6: TagInfoShort

public TagInfoShort(final String name, final int tag, final TiffDirectoryType directoryType) {
    super(name, tag, FieldType.SHORT, 1, directoryType);
}
 
開發者ID:apache,項目名稱:commons-imaging,代碼行數:3,代碼來源:TagInfoShort.java


注:本文中的org.apache.commons.imaging.formats.tiff.fieldtypes.FieldType.SHORT屬性示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。