我可以发送多个“流”吗?单个 URLRequest 中的 jpeg ByteArray 数据并输出 2 个图像?闪存AS3-> PHP
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用以下内容: 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