1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| function _getServiceAddress () {
| return window.location.protocol + '//' + window.location.host
| }
|
| export function getImageInfo ({
| src
| }, callbackId) {
| const {
| invokeCallbackHandler: invoke
| } = UniServiceJSBridge
| const img = new Image()
| const realPath = src
| img.onload = function () {
| invoke(callbackId, {
| errMsg: 'getImageInfo:ok',
| width: img.naturalWidth,
| height: img.naturalHeight,
| path: realPath.indexOf('/') === 0 ? _getServiceAddress() + realPath : realPath
| })
| }
| img.onerror = function (e) {
| invoke(callbackId, {
| errMsg: 'getImageInfo:fail'
| })
| }
| img.src = src
| }
|
|