leaferjs / leafer-ui

一款好用的 Canvas 渲染引擎,革新的体验。高效绘图 、UI 交互(小游戏、互动应用、组态)、图形编辑,前端开发必备~
https://www.leaferjs.com
MIT License
2.38k stars 82 forks source link

electron can't load local image #137

Closed chenyuyu118 closed 5 months ago

chenyuyu118 commented 5 months ago

I'm trying to use leafer in electron,but it can't load local image with specificied protocol which can be successfully loaded by canvas or other web image load way.

image

image

leaferjs commented 5 months ago

image

图片加载默认添加了一个?leaf后缀,设为空即可解决问题

import { Platform } from 'leafer-ui' Platform.image.suffix = ''

下个版本会默认把这个设为空,目前发现有好几个人碰到了类似问题