php 脚本将 .png 转换为 .icns(适用于 mac os)
我正在寻找将 .png 文件转换为 mac 的 .icns 文件的 php 脚本。
谢谢。
I am looking for php script that convert .png file to .icns file for mac.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 imagemagick(如果可用):
了解您是否有 imagemagick,使用 < a href="http://nl.php.net/phpinfo" rel="nofollow noreferrer">phpinfo
You can use imagemagick if available:
Find out if you have imagemagick, with phpinfo
显然 imagemagick 不支持开箱即用的 icns (我确信我以前用过它,但也许还有一些额外的库?不记得了)
但是,也刚刚测试了小 Linux icnsutils.它没有 PHP 绑定,因此您需要发出系统调用(可怕的),
在系统调用中小心使用您不能完全信任的变量。 :)
Apparently imagemagick does not support icns out of the box (I am sure I used it before, but maybe with some additional library? Cannot remember)
However, just tested the little Linux too icnsutils. It does not have PHP-bindings, so you will need to issue a system call (the horror)
Be vary wary of using variables whom you cannot entirely trust, in system calls. :)