只需单击一下即可操作图像
我想知道是否可以将以下 基础图像 转换为 使用 PHP GD 库更新图像?
I would like to know whether it is possible to convert the following base image to updated image using PHP GD library?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一切皆有可能。如果您确实愿意,可以用 PHP 重新实现 Adobe Photoshop 中的每一种算法,一次在图像中读取和写入一个像素。这只是您想要花费多少天/周/月/年来重新发明轮子而不是寻找合适的工具/库的问题。
那么你能把某种投影的东西变成某种砖块的东西吗?是的。你能用一行代码自动完成它吗?不,没有 GD 函数知道这就是您想要发生的事情。
Anything is possible. You can reimplement every algorithm in Adobe Photoshop in PHP if you really wanted to, reading and writing one pixel at a time to/from the image. It's just a matter of how many days/weeks/months/years you want to spend reinventing the wheel instead of finding an appropriate tool/library.
So can you turn some kind of drop shadow thing into some kind of brick thing? Yes. Can you do it automatically in one line of code? No, there's no GD function that knows that's what you want to happen.