如何在 Phonegap javascript 中从图像文件创建文件对象...?
我有一个图像 (relative URL="/images/image.jpg")
,如何在 JavaScript 或 Phonegap api 中使用此 URL 获取该图像的文件对象...
<img src="/images/image1.jpg" />
以上是显示图像,我需要获取该图像的文件对象。
非常感谢任何帮助...
I have a image (relative URL="/images/image.jpg")
, how to get a file object of this image using this URL in JavaScript or Phonegap api ....
<img src="/images/image1.jpg" />
the above is the image displayed, i need to get the file object of this image .
Any help is greatly appreciated ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您将无法获取该图像的文件对象,因为它不是文件系统的一部分。相反,它是应用程序的打包部分。
You will not be able to get a file object of that image as it is not part of the file system. Instead it is a packaged part of your application.