微信小程序微信小程序wx.getImageInfo()如何获取图片信息如何获取图片信息
主要为大家详细介绍了微信小程序wx.getImageInfo()如何获取图片信息,具有一定的参考价值,感兴趣的小伙伴们
可以参考一下
本文实例为大家分享了Android九宫格图片展示的具体代码,供大家参考,具体内容如下
一一.知识点知识点
二二.列子列子
(1).加载时
<view class="zn-uploadimg">
<image src="{{tempFilePaths}}" mode="aspecFill" style="width: 100%; height: 450rpx" />
<text>图片的大小:{{imgwidth}}px*{{imgheight}}px</text>
</view>
var app = getApp()
Page({
data: {
tempFilePaths: '../uploads/foods.jpg',
imgwidth:0,
imgheight:0,
},
onReady:function(){
// 页面渲染完成
var _this = this;
wx.getImageInfo({
src: _this.data.tempFilePaths,
success: function (res) {
_this.setData({
imgwidth:res.width,
imgheight:res.height,
})
}
})
}
})
评论0
最新资源