当前位置: 首页> 文旅> 酒店 > 广告图案大全图片素材_西安网约车驾驶员资格证网上报名_互联网项目_软文营销怎么做

广告图案大全图片素材_西安网约车驾驶员资格证网上报名_互联网项目_软文营销怎么做

时间:2025/7/27 14:27:57来源:https://blog.csdn.net/qq_61950936/article/details/142858934 浏览次数:0次
广告图案大全图片素材_西安网约车驾驶员资格证网上报名_互联网项目_软文营销怎么做

vue使用gdal-async获取tif文件的缩略图

npm i gdal-async

gdal-async
在这里插入图片描述
在Vue组件中使用gdal-async获取缩略图:

<template><div><img v-if="thumbnail" :src="thumbnail" alt="Thumbnail" /></div>
</template><script>
import { apply, gdal } from 'gdal-async';export default {data() {return {thumbnail: null,};},async mounted() {await apply(); // 确保GDAL异步API可用try {const dataset = await gdal.openAsync('your_tiff_file.tif'); // 替换为你的TIFF文件路径const raster = dataset.bands.get(1); // 获取第一个波段const data = await raster.pixels.readAsync(0, 0, raster.sizeX, raster.sizeY); // 读取波段的像素数据const canvas = await raster.renderAsync(data, 256, 256, 1); // 渲染缩略图,尺寸为256x256// canvas.toDataURL() 获取到的是base64格式的src地址this.thumbnail = canvas.toDataURL(); // 转换为DataURL,用于在<img>标签中显示} catch (error) {console.error('Error while generating thumbnail:', error);}},
};
</script>
关键字:广告图案大全图片素材_西安网约车驾驶员资格证网上报名_互联网项目_软文营销怎么做

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com

责任编辑: