如何将图像从PHP加载到flash动画片段?

时间:2010-12-27 03:34:03

标签: php image actionscript movieclip

首先,我要说我没有动作知识,但我有PHP知识。

如何让movieclip显示来自php文件的图像?

如何将图像从php文件发送到movieclip?

我是否回应它?

1 个答案:

答案 0 :(得分:1)

好吧,我知道你本来可以用googles来查看这个,但我还是要解释一下怎么做。

  

如何让movieclip显示来自php文件的图像?

<?php

// open the file in a binary mode
$name = './img/ok.png';
$fp = fopen($name, 'rb');

// send the right headers
header("Content-Type: image/png");
header("Content-Length: " . filesize($name));

// dump the picture and stop the script
fpassthru($fp);
exit;

此代码是php.net manual的复制品。简而言之,您应该使用fpassthru

  

如何将图像从php文件发送到movieclip?

使用Loader class。一个例子位于页面底部。