如何从SWF与ActionScript3的/ PHP输出图像?

编程入门 行业动态 更新时间:2024-10-27 20:31:37
本文介绍了如何从SWF与ActionScript3的/ PHP输出图像?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有另一块为更高级的家伙比我;)

i have another piece for more advanced guys than me ;)

我开发一个简单的Flash应用程序来创建你自己的徽章。创建完,这将是很好把它保存为图像,以客户端的计算机或数据库,我不知道呢。问题是从SWF内容使得图像 - 我的意思不是全部内容,只是它的一部分,那里的COA是。我发现用一些图像连接codeRS和PHP在Web上的一些eamples,但我cant't了解它是如何工作的。可能有人会这么好心来解释我的这个基本原则是什么?我想让它尽可能的简单。

I am developing a simple flash application to create your own coat of arms. When finished creating, it would be nice to save it as an image to a client's computer or to a database, i am not sure yet. The problem is making the image from swf content - i mean not the whole content, just a part of it, where the COA is. I have found some eamples on the web using some image encoders and PHP, but i cant't understand how it works. Could anybody be so kind to explain me the basic principles of this? I want to make it as simple as possible.

推荐答案

首先,绘制图像(雪碧或MovieClip等)到BitmapData:

First, draw the image (Sprite or MovieClip, etc) into a BitmapData:

var b: BitmapData = new BitmapData(640, 480, false, 0xffffffff); b.draw(mcToBeSaved);

然后,使用例如的as3corelib 以EN code这两个BitmapData成PNG或JPG文件。

Then, use e.g. as3corelib to encode the BitmapData into PNG or JPG files.

var ba: ByteArray = PNGEncoder.encode(b);

然后,对Flash 10,你可以立即获得用户将图像保存到一个文件中,使用的FileReference的保存方法。

Then, for Flash 10, you can immediately get the user to save the image to a file, using FileReference's save method.

更多推荐

如何从SWF与ActionScript3的/ PHP输出图像?

本文发布于:2023-11-23 15:34:38,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1621968.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:图像   SWF   PHP

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!