从 flash 到 javascript 的 jpeg 信息
我正在尝试将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一种可能的方法是将图像编码为 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.