PHP - 检查图像是否添加了阴影?
我想知道是否有一种不错的方法或某种方式来检查图像以查看是否添加了阴影。如果可能的话,使用 php 来完成此操作。
只是好奇是否有任何聪明的方法可以解决这个问题。
谢谢, 肖恩
I'm wondering if there's a decent way or any of some sort to check an image to see if there is a drop shadow added. Doing this with php, if possible.
Just curious if there's any clever way of going about this, possibly.
Thanks,
Shawn
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,如果您指的是图像内的阴影,则没有“聪明”的方法可以做到这一点。你需要用 gd 或 imagemagick 或类似的东西来以困难的方式做到这一点。手动测试梯度。
如果你指的是 html 边框,你当然可以检查元素的 css。
No, there's no "clever" way of doing this if you mean a drop shadow inside the image. You need to do it the hard way with gd or imagemagick or something like that. Manually testing for gradients.
If you mean an html border, you can of course check the css of the element.