我刚创建了一个使用livecode显示图像的页面。 我首先使用以下代码创建了一个图像路径:
put "localhost/windy.png" into iconPath
然后,使用以下代码显示图像:
put url("binfile:" & iconPath)
但是,给出空白页..
需要你的帮助..
答案 0 :(得分:2)
这是一个工作示例(url = http://splash21.on-rev.com/test.lc)
.lc文件的内容如下......
<?lc
put header("Content-type:image/png")
put URL("binfile:img/robot.png")
图像位于相对于.lc脚本的“img”文件夹中