PHP GD 库中的 imagepng() 和透明度
在PHP中使用imagepng()
函数时,如何确保保存的图像具有透明背景?
When using the function imagepng()
in PHP, how can I make sure the images that I save are saved with a transparent background?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
只需执行以下操作:
在输出之前。确保所有源文件(如果您使用过)都设置为具有透明度的 PNG 32 位 - 如果不是,输出可能会与黑色背景不同或透明度不符合要求。
Simply do this:
Before outputting. Make sure that all source files (if you used any) are set to PNG 32-bit with transparency - if not the output may differ with black background or transparency does not comply.
这是例子
Here is the example
以下是
imagecolortransparent
函数的示例(如果它有帮助):Here is an example of the
imagecolortransparent
function (if it helps):有一个名为 imagecolortransparent 的函数,允许您设置使用哪种颜色透明的。我不知道这是否回答了你的问题。
There's a function called imagecolortransparent that allows you to set which color is made transparent. I don't know if this answers your question.