php 脚本将 .png 转换为 .icns(适用于 mac os)

发布于 2024-09-11 14:03:51 字数 60 浏览 2 评论 0原文

我正在寻找将 .png 文件转换为 mac 的 .icns 文件的 php 脚本。

谢谢。

I am looking for php script that convert .png file to .icns file for mac.

Thanks.

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

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

发布评论

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

评论(2

意中人 2024-09-18 14:03:51

您可以使用 imagemagick(如果可用):

$im = new imagick( '/path/to/file.png' ); 


$im->setCompressionQuality(100);
$im->setImageFormat('icns');

$im->writeImage('/path/to/new/file.icns');
$im->clear();
$im->destroy();

了解您是否有 imagemagick,使用 < a href="http://nl.php.net/phpinfo" rel="nofollow noreferrer">phpinfo

You can use imagemagick if available:

$im = new imagick( '/path/to/file.png' ); 


$im->setCompressionQuality(100);
$im->setImageFormat('icns');

$im->writeImage('/path/to/new/file.icns');
$im->clear();
$im->destroy();

Find out if you have imagemagick, with phpinfo

梦行七里 2024-09-18 14:03:51

显然 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. :)

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