0

我正在使用 AS3 制作图片库。我用 PHP 读取给定目录,将其中图像的路径作为数组返回。我还想形成缩略图,将它们序列化,作为数组发送到 as3,并使用这些数据创建位图。

请帮助我完成以下步骤:

- 在 PHP 中调整图像大小并对其进行序列化

- 用序列化数据在 AS3 中形成位图

4

1 回答 1

1

至于第一个要求,我会用这样的代码对图像进行缩略图:

$source_image = imagecreatefrompng(  WWW_ROOT . 'img/' . $yourpath . '.png');
            $source_imagex = imagesx($source_image);
            $source_imagey = imagesy($source_image);
            $dest_imagex = 200;
            $dest_imagey = 200;
            $dest_image = imagecreate($dest_imagex, $dest_imagey);
            imagecopyresampled($dest_image, $source_image, 0, 0, 0, 0, $dest_imagex,
            $dest_imagey, $source_imagex, $source_imagey);
            header("Content-Type: image/png");
            imagepng($dest_image, WWW_ROOT . 'img/' . "small" . $yourpath . '.png' ,9);

对于二进制编码,您可以使用 php ( http://php.net/manual/en/function.base64-encode.php ) 中的 base64 编码功能。如果您想发送此动作脚本,请阅读此处的流程S/O 问题:将数组从 PHP 发送到 AS3?- 看来您可以简单地将信息打印/回显为 AS3 变量。

这个 S/O 问题可以帮助您从 base64 制作图像:Create image from data-in-uri (base64-encoded PNG) in ActionScript

于 2013-08-07T16:13:29.597 回答