我可以发送多个“流”吗?单个 URLRequest 中的 jpeg ByteArray 数据并输出 2 个图像?闪存AS3-> PHP

发布于 2024-10-14 15:16:08 字数 415 浏览 5 评论 0原文

我有一个 AS3 swf,用户可以将 jpg 图像上传到位于弹性负载均衡器后面的 EC2 实例。 jpg 图像被转换为​​字节数组数据并使用 URLLoader.load(URLRequest) 发送。

我在上传时进行了 2 个调用,一个用于上传大版本,另一个用于上传缩略图版本。上传字节数组数据的 PHP 脚本使用 file_put_contents($destination, $GLOBALS["HTTP_RAW_POST_DATA"]) 将其转换为文件

是否可以将这两个请求合并为一个包含以下内容的请求:大图像和缩略图的字节数组数据以及“拆分”HTTP_RAW_POST_DATA 以在服务器上创建 2 个文件。这比上传大版本的字节数组然后使用 ImageMagick 之类的东西将生成的图像大小调整为缩略图更好,我意识到这是另一种选择。

有什么建议吗? 干杯

I have an AS3 swf which users can upload jpg images to my EC2 instances which sit behind and Elastic Load Balancer. The jpg images are converted into bytearray data and sent using URLLoader.load(URLRequest)

I make 2 calls when uploading, one to upload a large version, then another to upload a thumbnail version. A PHP script to which the bytearray data is uploaded converts this to a file using file_put_contents($destination, $GLOBALS["HTTP_RAW_POST_DATA"])

Is it possible to combine these two requests into a single request which contains both the bytearray data for the large and thumbnail images and 'split' the HTTP_RAW_POST_DATA to create 2 files at the server. This would be better than uploading the bytearray for the large version then using something like ImageMagick to resize the resulting image into a thumbnail which I realise is another option.

any suggestions?
cheers

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

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

发布评论

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

评论(1

错爱 2024-10-21 15:16:08

您可以尝试使用以下内容: Multipart form data in as3 Class version 1.2

You can try with somethis like this: Multipart form data in as3 Class version 1.2

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