使用POST方法将数据从Flash发送到PHP
我开发了一个应用程序,允许用户在画布上绘制简单的图像。影片剪辑(画布)的名称是canvas_mc。
我需要使用 php 将这张图保存在服务器上。我必须将影片剪辑(canvas_mc)转换为png和jpeg并保存。我已使用 http://www.flashandmath 中提供的一些类成功将其保存在本地驱动器上
。 com/advanced/smoothdraw/index.html
如何使用 PHP 将其保存在服务器上。我被要求使用 post 方法。如果可能的话,也给我代码,因为我刚刚从设计转向编程:-)
I have a developed a application that allows users to draw simple images on a canvas. The name of the movieclip(canvas) is canvas_mc.
I need to save this drawing on the server using php. I have to convert the movieclip (canvas_mc) into png and jpeg and save it. I have successfully save it on local drive using some classes available in
http://www.flashandmath.com/advanced/smoothdraw/index.html
How can I save it on server using PHP. I have been asked to use the post method. If possible give me the code also as I just moved into programming from design :-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不确定如何将图像转换为数据等,但我有一个类,您可以使用它将数据传输到 PHP 脚本(可以从那里将数据插入数据库)。
使用:
Not sure about how to convert your image into data and such, but here's a class I have lying around that you can use to transfer data to a PHP script (which can from there insert the data into a database).
Use: