从 flash 到 javascript 的 jpeg 信息

发布于 2024-12-14 12:13:11 字数 224 浏览 1 评论 0原文

我正在尝试将 jpeg 从 Flash 传输到 JavaScript。这可能吗?

我的意思是:Flash 由用户提供图像并执行一些图像操作。然后我需要在 HTML 中显示修改后的图像。我是否需要将图像从flash发布到服务器并通过URL将其加载为html,或者我可以通过flash的外部接口以某种方式将其直接从flash传递到javascript图像对象吗?

最好的方法是什么?

谢谢。

I'm trying to transfer a jpeg from Flash to JavaScript. Is this even possible?

What I mean by that is: Flash is supplied an image from the user and performs some image manipulation. I then need to display that modified image in HTML. Do I need to post the image from the flash to the server and load it in html through a URL, or can I pass it directly from the flash into a javascript Image object through flash's external interface somehow?

What's the best way to do this?

Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

花开半夏魅人心 2024-12-21 12:13:11

一种可能的方法是将图像编码为 base64 并通过 externalInterface 调用将字符串发送到 JavaScript。在 JavaScript 方面,您需要将接收到的字符串从 base64 解码回原始 jpeg 格式。

这里是完成所有所需操作的教程集合:

在 Actionscript 中将图像转换为 base64:http://swati61.blogspot.de/2011/07/convert-image-to-base64-string-and-vice.html

在 javascript 中将 base64 转换为图像: 客户端 Javascript 中的 Base64 编码和解码

Actionscript 和 JavaScript 之间的通信: http ://www.hariscusto.com/programming/communication- Between-javascript-and-actionscript-as3-and-vice-versa/

我希望这能回答您的问题。

One possible way is to encode your image to base64 and send the string via externalInterface call to JavaScript. On the JavaScript side you will need to decode the received string from base64 back to the original jpeg format.

Here a collection of tutorials to do all the bits needed:

Convert image to base64 in Actionscript: http://swati61.blogspot.de/2011/07/convert-image-to-base64-string-and-vice.html

Convert base64 to image in javascript : Base64 encoding and decoding in client-side Javascript

Communication between Actionscript and JavaScript: http://www.hariscusto.com/programming/communication-between-javascript-and-actionscript-as3-and-vice-versa/

I hope this answers your question.

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