创建动态 PNG 图像
我想在 PHP 中创建一个小函数,它接受颜色、形状、透明度等参数并输出 PNG 图像。 我听说过 PHP GD 库,但我想知道如何创建像 soon.media.mit.edu
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想在 PHP 中创建一个小函数,它接受颜色、形状、透明度等参数并输出 PNG 图像。 我听说过 PHP GD 库,但我想知道如何创建像 soon.media.mit.edu
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(8)
这是一个很好的示例,您几乎可以使用 这些函数。 虽然可能,但创建像你所描述的那样的图像会非常困难,因为我已经用渐变、循环和颜色做了一些奇怪的东西。
如果您想根据某些参数动态制作这样的图像,您始终可以预先在 Photoshop 中创建图像,然后根据用户选择的内容叠加它们。
您可以享受很多乐趣。
编辑:哦,顺便说一句,如果您有兴趣 给予无效参数显示了一些负责创建图像并导致错误的Python代码。 这将是了解代码的好地方。
第二次编辑:这就是我用这种技术所做的事情。 请记住,那是很久以前的事了。 它接受基于查询字符串的名称,并且基本上使用大量随机数进行一些循环。
这是源代码,对于任何愚蠢的代码/引用,我深表歉意。 这是很久以前写的,我相信当时我大约 14 岁(可能有很多缺陷)。
This is a good example, you can do virtually everything using these functions. While possible, creating an image like the one you described would be pretty hard by I have done some weird stuff with gradients, loops and colors though.
If you wanted to make an image like that dynamically based on some parameters you can always create the images beforehand in photoshop and then overlay them based on what a user selects.
There is a lot of fun you can have.
Edit: Oh by the way, if your interested giving an invalid parameter shows some of the python code that is responsible for creating the image and causing the error. It would be a good place to get some idea of the code.
2nd Edit: This is just something I have done with this sort of technology. Bear in mind it was quite a while ago. It accepts a name based on the query string and basically does a few loops with a lot of random numbers.
Here is the source code, I apologize for any stupid code/quotes. This was written quite a while ago, when I was about 14 I believe (probably many flaws).
这是我之前用来生成具有两个名称的图像的代码,这些名称是从查询字符串参数中接受的。 我使用准备好的背景图像并将名称放在其上面。
要在页面上显示生成的图像,请执行以下操作:
Here's the code that I used before to generate an image with two names, which are accepted from query string parameters. I use a prepared background image and put the names on top of it.
To display the generated image on the page you do something like this:
这是一个简单的例子:
here is simple example:
不是“用 PHP 实现”的直接答案,但您可以从 PHP 调用一些功能强大的命令行软件。 特别是 ImageMagick 将绘制所有东西,包括厨房水槽。 它还具有可用于“后端”脚本进行“带外”处理的优点(即,在请求完成后执行图像处理(更快的用户反馈)或在资源紧张的深夜批量执行)高峰时间。
Not a direct answer to "doing it in PHP" but you can call some powerful command-line software from PHP. In particular ImageMagick will draw everything including the kitchen sink. It also has the advantage of being available to "back-end" scripts for "out-of-band" processing (ie, performing image processing after the request completes (faster user feedback) or late at night in batches when resources are tight during peak times.
这并不完全是您想要的,但我编写了一个脚本来将动态颜色层插入到透明图像中。 您可以使用单色图像“图层”对其进行设置并运行它,并为其提供十六进制颜色代码。 该脚本会重新为您的图层着色并将它们合并到一张图像中进行呈现。 这是代码; 希望你能从中得到一些用处。
如果您想了解有关该代码的更多信息,我的 博客。
It's not completely what you're looking for, but I put together a script to insert dynamic color layers into transparent images. You set it up with one-color images "layers" and to run it, feed it a hex color code. The script re-colors your layers and merges them into one image to present. Here's the code; hopefully you can get some use out of it.
If you want more information about that code, I have a detailed explaination on my blog.
这是我用动态文本创建动态 png 图像的函数......
并且可以被称为-
这里是create_image.php,它提供了请求的图像......
Here is my function to create dynamic png image with dynamic text...
And can be called as-
Here is create_image.php which provides the image requested...
这是一个简单的使用示例:
Here is a simple example to use:
您也可以使用Imagick。 它在性能方面比 GD 库更好。
来源: http://coderaweso.me/php-imagick-create-images-texts /
You can use Imagick as well. It can be better in performance wise than GD library.
Source: http://coderaweso.me/php-imagick-create-images-texts/