如何将 Canvas Control 中的图像保存到 WebSQL?
如何将 Canvas Control 中的图像保存到 WebSQL? 我的应用程序是 jQuery 移动应用程序。
在这里我找到了答案的线索
var img = new WriteableBitmap(myCanvas, null);
但是这个img如何保存在我的WebSql数据库中?如果我想将其保存在 SQL SERVER 表(图像数据类型)中,如何转换?
我将不胜感激任何帮助。
How I can save an image in Canvas Control to WebSQL?
My application is a jQuery Mobile Application.
Here I found a clue for my answer
var img = new WriteableBitmap(myCanvas, null);
But this img how I can Save in my WebSql database? How do I convert this if I want to save it in an SQL SERVER table(Image DataType)?
I'll appreciate any help on this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们可以将该图像以“TEXT”数据类型存储在 Web sql 中。
为了预览此内容,此“MyImage”dataurl 可以设置为任何图像对象“src”。
This image we can store in web sql in 'TEXT' datatype.
For previewing this, this 'MyImage' dataurl can set to any Image object 'src'.