插件中drawImage使用本地文件的路径应该怎么写
在小程序插件中绘制本地图片资源,路径应该怎么写?
图片文件在项目中路径:
plugin/resources/images/xx.png
相关绘制代码:
ctx.drawImage(‘local file path’, 0, 0, 100, 100)
其中 local file path 试过如下路径均无效果:
/resources/images/xx.png
plugin/resources/images/xx.png
…/…/resources/images/xx.png (相对于调用页面的地址)
plugin-private://resources/images/xx.png
报错信息:
Failed to load local image resource /__plugin__/[myappid]/__plugin__/[myappid]/resources/images/xx.png
the server responded with a status of 404 (HTTP/1.1 404 Not Found)
截图: