编码jpg并通过php保存到服务器

发布于 2024-12-23 08:26:28 字数 146 浏览 3 评论 0原文

我将像素值的字节数组从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 技术交流群。

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

发布评论

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

评论(1

迷乱花海 2024-12-30 08:26:28

我认为这将是一种方法(我只是告诉你一些算法) -

步骤 1 - 解码像素值数组。

第 2 步 - 创建图像对象。

$image = imagecreatetruecolor(height, width);

步骤 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.

$image = imagecreatetruecolor(height, width);

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);

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