本文整理汇总了Java中gov.nasa.worldwind.util.WWIO.makeMimeTypeForSuffix方法的典型用法代码示例。如果您正苦于以下问题:Java WWIO.makeMimeTypeForSuffix方法的具体用法?Java WWIO.makeMimeTypeForSuffix怎么用?Java WWIO.makeMimeTypeForSuffix使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类gov.nasa.worldwind.util.WWIO
的用法示例。
在下文中一共展示了WWIO.makeMimeTypeForSuffix方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: initProductionParameters
import gov.nasa.worldwind.util.WWIO; //导入方法依赖的package包/类
protected void initProductionParameters(AVList params) {
// Preserve backward compatibility with previous versions of TiledImageProducer. If the caller specified a
// format suffix parameter, use it to compute the image format properties. This gives priority to the format
// suffix property to ensure applications which use format suffix continue to work.
if (params.getValue(AVKey.FORMAT_SUFFIX) != null) {
String s = WWIO.makeMimeTypeForSuffix(params.getValue(AVKey.FORMAT_SUFFIX).toString());
if (s != null) {
params.setValue(AVKey.IMAGE_FORMAT, s);
params.setValue(AVKey.AVAILABLE_IMAGE_FORMATS, new String[] { s });
}
}
if (params.getValue(AVKey.PIXEL_FORMAT) == null) {
params.setValue(AVKey.PIXEL_FORMAT, AVKey.IMAGE);
}
// Use the default image format if none exists.
if (params.getValue(AVKey.IMAGE_FORMAT) == null) {
params.setValue(AVKey.IMAGE_FORMAT, DEFAULT_IMAGE_FORMAT);
}
// Compute the available image formats if none exists.
if (params.getValue(AVKey.AVAILABLE_IMAGE_FORMATS) == null) {
params.setValue(AVKey.AVAILABLE_IMAGE_FORMATS, new String[] { params.getValue(AVKey.IMAGE_FORMAT).toString() });
}
// Compute the format suffix if none exists.
if (params.getValue(AVKey.FORMAT_SUFFIX) == null) {
params.setValue(AVKey.FORMAT_SUFFIX, WWIO.makeSuffixForMimeType(params.getValue(AVKey.IMAGE_FORMAT).toString()));
}
if (params.getValue("TRILOGIS") == null){
params.setValue("TRILOGIS", this.replaceWhitePixels);
}
}
示例2: initProductionParameters
import gov.nasa.worldwind.util.WWIO; //导入方法依赖的package包/类
protected void initProductionParameters(AVList params) {
// Preserve backward compatibility with previous versions of TiledImageProducer. If the caller specified a
// format suffix parameter, use it to compute the image format properties. This gives priority to the format
// suffix property to ensure applications which use format suffix continue to work.
if (params.getValue(AVKey.FORMAT_SUFFIX) != null) {
String s = WWIO.makeMimeTypeForSuffix(params.getValue(AVKey.FORMAT_SUFFIX).toString());
if (s != null) {
params.setValue(AVKey.IMAGE_FORMAT, s);
params.setValue(AVKey.AVAILABLE_IMAGE_FORMATS, new String[] { s });
}
}
if (params.getValue(AVKey.PIXEL_FORMAT) == null) {
params.setValue(AVKey.PIXEL_FORMAT, AVKey.IMAGE);
}
// Use the default image format if none exists.
if (params.getValue(AVKey.IMAGE_FORMAT) == null) {
params.setValue(AVKey.IMAGE_FORMAT, DEFAULT_IMAGE_FORMAT);
}
// Compute the available image formats if none exists.
if (params.getValue(AVKey.AVAILABLE_IMAGE_FORMATS) == null) {
params.setValue(AVKey.AVAILABLE_IMAGE_FORMATS, new String[] { params.getValue(AVKey.IMAGE_FORMAT).toString() });
}
// Compute the format suffix if none exists.
if (params.getValue(AVKey.FORMAT_SUFFIX) == null) {
params.setValue(AVKey.FORMAT_SUFFIX, WWIO.makeSuffixForMimeType(params.getValue(AVKey.IMAGE_FORMAT).toString()));
}
}