如何使用 PHP 在 GD 中设置部分透明度?

发布于 2024-07-16 09:19:24 字数 72 浏览 3 评论 0原文

我正在尝试用 PHP 制作动态图像,但我不知道如何设置部分透明度。 让事物变得坚实或完全透明是很容易的,但我一直无法做到这一点。

I am attempting to make a dynamic image with PHP, and I can't find out how to set partial transparency. It is very easy to make things either solid or fully transparent, but I have been unable to do this.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

向地狱狂奔 2024-07-23 09:19:24

假设您使用 imagecreatetruecolor 函数创建图像,并且将图像输出为 PNG 文件......

您需要调用以下方法来指定在调用之前必须将图像生成为 24 位 PNG imagepng:

imagesavealpha($im, true);

请注意,如果不使用应用于 img 标记的 CSS 过滤器,Internet Explorer 6 不支持 24 位 PNG 文件。

Assuming you're creating your image with the imagecreatetruecolor function and that you're outputting the image as a PNG file....

You need to call the following methods to specify that the image must be generated as a 24-bit PNG before calling imagepng:

imagesavealpha($im, true);

Note that Internet Explorer 6 doesn't support 24-bit PNG files without the use of a CSS filter applied to the img tag.

染墨丶若流云 2024-07-23 09:19:24

查看 imagecolorallicatealpha() 的文档 他们创建了一种透明颜色圆圈。

Check out the documentation for imagecolorallicatealpha() There they create a transparent color circle.

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