uni-app获取图片的宽高
时间: 2023-08-21 11:06:18 浏览: 381
在uni-app中,可以使用`uni.getImageInfo`方法来获取图片的宽高。可以按照以下步骤来实现:
1. 引入uni-app的API:在页面的js文件中,使用`import`语句引入`uni`对象,以便使用其中的方法。
2. 调用`uni.getImageInfo`方法:在需要获取图片宽高的地方,使用`uni.getImageInfo`方法,并传入图片的路径或临时文件路径作为参数。
3. 处理返回结果:`uni.getImageInfo`方法会返回一个Promise对象,可以使用`then`方法来处理获取到的图片信息。在`then`方法中,可以通过`res.width`和`res.height`来获取图片的宽高。
下面是一个示例代码,展示了如何在uni-app中获取图片的宽高:
```javascript
import uni from 'uni-app';
uni.getImageInfo({
src: '/static/image.jpg',
}).then(res => {
const width = res.width;
const height = res.height;
console.log('图片宽度:', width);
console.log('图片高度:', height);
});
```
通过以上步骤,你可以在uni-app中获取到图片的宽高信息。<span class="em">1</span>
#### 引用[.reference_title]
- *1* [uni-app 组件里面获取元素宽高的实现](https://download.csdn.net/download/weixin_38564718/12929837)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 100%"]
[ .reference_list ]
阅读全文