osgearth的earth文件设置缓存图片数据时,只能存储为png吗?我将缓存图片类型设置为jpg后,仍然保存呢为png,而且还提示找不到相应的插件来保存png格式的数据,我的earth文件内容如下:
<!--
osgEarth Sample - GDAL Driver
Demonstrates the simplest possible use of the GDAL driver to load a GeoTIFF image.
-->
<map version="2">
<image driver="gdal" name="world-tiff">
<url>../data/world.tif</url>
</image>
<options lighting="false">
<!--Tell osgEarth to cache the tiles in a TMS format-->
<cache type="tms">
<path>F:/osgearth_cache</path>
<!--Tell osgEarth to cache the tiles to JPG to save disk space-->
<format>jpg</format>
</cache>
</options>
</map>