如何将 Canvas Control 中的图像保存到 WebSQL?

发布于 2024-12-05 07:27:09 字数 335 浏览 1 评论 0原文

如何将 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

How save canvas as image?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吾家有女初长成 2024-12-12 07:27:09

我们可以将该图像以“TEXT”数据类型存储在 Web sql 中。

var canvas = document.getElementById('canvas');
MyImage = canvas.toDataURL('image/jpeg');

为了预览此内容,此“MyImage”dataurl 可以设置为任何图像对象“src”。

var img = new Image();
img.src = MyImage;

This image we can store in web sql in 'TEXT' datatype.

var canvas = document.getElementById('canvas');
MyImage = canvas.toDataURL('image/jpeg');

For previewing this, this 'MyImage' dataurl can set to any Image object 'src'.

var img = new Image();
img.src = MyImage;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文