PHP/GD 的 Alpha 掩码?

发布于 2024-10-19 06:00:14 字数 57 浏览 2 评论 0原文

是否可以在 PHP/GD 中使用另一个图像的 alpha 来掩盖图像,以便结果是 24 位 png?

Is it possible to mask an image using another image's alpha in PHP/GD so that the result is 24bit png?

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

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

发布评论

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

评论(1

轻拂→两袖风尘 2024-10-26 06:00:14

您可以通过手动逐像素处理图像来完成此操作(使用 imagecolorat 和 imagesetpixel)。

如果图像相对较小(即任何您称之为图标的图像)并且不会经常更改(因此您可以缓存结果),那么 GD 就可以了。我使用此方法为禁用按钮 64x64 图标生成灰色版本,这些图标很少发生变化。

如果您需要更频繁地对更大的图像执行此操作,ImageMagick 将执行您想要的任何图像处理。它可以实现您正在寻找的屏蔽

You could do it by processing the image pixel-by-pixel manually (using imagecolorat and imagesetpixel).

If the image is relatively small (i.e. anything you'd call an icon) and doesn't change too often (so you can cache the result), GD will do just fine. I've used this method to generate gray versions for disabled button 64x64 icons which rarely ever change.

If you need to do this with larger images and more frequently, ImageMagick will do any image manipulation you'd ever want. It can do the masking you are looking for.

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