编码jpg并通过php保存到服务器
我将像素值的字节数组从Processing.js 传递到javascript,其中它的base 64 编码并通过POST 传递到php 页面。我需要 php 页面将其编码为 jpg 并将图像保存到我的服务器。实现这一目标的最佳方法是什么?如果可能的话最好全部通过 PHP。谢谢!
I am passing a byte array of pixel values from Processing.js to javascript where its base 64 encoded and passed via POST to a php page. I need the php page to encode it as a jpg and save the image to my server. What is the best way to accomplish this? Preferably all through PHP if possible. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这将是一种方法(我只是告诉你一些算法) -
步骤 1 - 解码像素值数组。
第 2 步 - 创建图像对象。
步骤 3 - for 循环从 0 到高度(x 方向)
循环 步骤 4 - for 循环从 0 到宽度 9(y 方向)
循环 步骤 5 - 使用 GD 的
imagesetpixel($image, $x 坐标) , $y 坐标, 0xff & PIXEL VALUE YOU GOT);
写入文件或输出到 HTTP 响应的输出流。
第 6 步 -
imageJPEG($image);
I think this will be one way (I'm just telling you some algorithm)-
step 1- decode the array of pixel values.
step 2 - create a image object.
step 3 - for loop for looping from 0 to height (x-direction)
step 4 - for loop for looping from 0 to width 9 (y-direction)
step 5 - use GD's
imagesetpixel($image, $x-coordinate , $y-coordinate, 0xff & PIXEL VALUE YOU GOT);
write to file or output to response's output stream in HTTP.
step 6 -
imageJPEG($image);