当前位置: 首页>>代码示例>>Java>>正文


Java WWIO.makeMimeTypeForSuffix方法代码示例

本文整理汇总了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);
	}
}
 
开发者ID:TrilogisIT,项目名称:FAO_Application,代码行数:36,代码来源:TransparentTiledImageProducer.java

示例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()));
	}
	
}
 
开发者ID:TrilogisIT,项目名称:FAO_Application,代码行数:33,代码来源:TiledPKMImageProducer.java


注:本文中的gov.nasa.worldwind.util.WWIO.makeMimeTypeForSuffix方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。