在网页上以灰度显示彩色图像
如何将网站上的图像转换为灰度图像?我不在乎是 PHP 还是 JS,但我认为 PHP 更好。
特别是,我有一个博客,其中包含包含图像的各种帖子,并且我希望索引页面上预览博客帖子的缩略图为灰度图像,而博客帖子中表示的图像保持彩色。这些缩略图共享一个名为 .post-thumbnail
的类,其中 img
标签位于具有该类的元素内。
我想要的只是在 CSS 中看起来像这样的属性:
.post-thumbnail img { image-transform: greyscale; }
在 PHP 或 JS 中。
How can I convert images on my website into greyscale? I don't care if it's PHP or JS, but I think PHP is nicer.
In particular I have a blog with various posts containing images, and I want the thumbnail images that preview the blog post on the index page to be greyscale while the represented images in the blog post stay colored. These thumbnail images share a class called .post-thumbnail
there the img
tag is inside the element with that class.
All I want is something that would look like this in CSS is there would be that property:
.post-thumbnail img { image-transform: greyscale; }
In PHP or JS.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 StackOverflow 上快速搜索发现:
请参阅使用 GD 库制作图像灰度
Quick search on StackOverflow finds this:
See Making an Image Greyscale with GD Library