本文整理匯總了Java中org.apache.commons.imaging.formats.tiff.fieldtypes.FieldType.DOUBLE屬性的典型用法代碼示例。如果您正苦於以下問題:Java FieldType.DOUBLE屬性的具體用法?Java FieldType.DOUBLE怎麽用?Java FieldType.DOUBLE使用的例子?那麽, 這裏精選的屬性代碼示例或許可以為您提供幫助。您也可以進一步了解該屬性所在類org.apache.commons.imaging.formats.tiff.fieldtypes.FieldType
的用法示例。
在下文中一共展示了FieldType.DOUBLE屬性的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: add
public void add(final TagInfoDouble tagInfo, final double... 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.DOUBLE,
values.length, bytes);
add(tiffOutputField);
}
示例2: add
public void add(final TagInfoDouble tagInfo, final double 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.DOUBLE, 1, bytes);
add(tiffOutputField);
}
示例3: TagInfoDouble
public TagInfoDouble(final String name, final int tag, final int length, final TiffDirectoryType directoryType) {
super(name, tag, FieldType.DOUBLE, length, directoryType);
}
示例4: TagInfoDoubles
public TagInfoDoubles(final String name, final int tag, final int length, final TiffDirectoryType directoryType) {
super(name, tag, FieldType.DOUBLE, length, directoryType);
}
示例5: TagInfoDouble
public TagInfoDouble(final String name, final int tag, final TiffDirectoryType directoryType) {
super(name, tag, FieldType.DOUBLE, 1, directoryType);
}