vue中获取图片url中的真实宽高
发布网友
发布时间:2022-12-21 22:43
我来回答
共1个回答
热心网友
时间:2023-01-23 16:49
<script>
export default {
data () {
return {
imgUrl: 'http://img.png'
}
}
methods: {
getImgInfo () {
let self =this;
let img =new Image()
img.src=self .imgUrl
img.onload=function () {
console.log('图片原始高度', img.height)
console.log('图片原始宽度',img.width)
}
}
}
}
</script>