5+ getImageInfo: 获取图片信息
uni-app 2019-11-02 23:11:40

 

XML/HTML Code复制内容到剪贴板
  1. // 可以解析图片文件,解析的内容请查阅ImageInfo:  
  2. // https://www.html5plus.org/doc/zh_cn/io.html#plus.io.ImageInfo  
  3. plus.io.getImageInfo({    
  4.     src: path,    
  5.     success: function(image) {  
  6.         uni.showModal({  
  7.             title: '解析图片信息',  
  8.             content: JSON.stringify(image),  
  9.             showCancel: false,  
  10.             cancelText: '',  
  11.             confirmText: '关闭',  
  12.         });  
  13.     },  
  14.     fail:function(error){  
  15.         uni.showModal({  
  16.             title: '解析图片信息失败',  
  17.             content: JSON.stringify(error),  
  18.             showCancel: false,  
  19.             cancelText: '',  
  20.             confirmText: '关闭',  
  21.         });  
  22.     }  
  23. });  

 

本文来自于:http://www.yoyo88.cn/study/uniapp/471.html

Powered by yoyo苏ICP备15045725号