如何使用 PHP 在 GD 中设置部分透明度?
我正在尝试用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您使用 imagecreatetruecolor 函数创建图像,并且将图像输出为 PNG 文件......
您需要调用以下方法来指定在调用之前必须将图像生成为 24 位 PNG imagepng:
请注意,如果不使用应用于 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:
Note that Internet Explorer 6 doesn't support 24-bit PNG files without the use of a CSS filter applied to the img tag.
查看 imagecolorallicatealpha() 的文档 他们创建了一种透明颜色圆圈。
Check out the documentation for imagecolorallicatealpha() There they create a transparent color circle.