multi resolution ICNS generation

Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here.
Post Reply
wsielski
Posts: 6
Joined: 2016-09-22T03:37:03-07:00
Authentication code: 1151

multi resolution ICNS generation

Post by wsielski »

Hello,

I'm trying to generate an *.icns file from multiple *.jpg files so it'd be a multi resolution .icns file. I've managed to do so with the .ico but not with the .icns. Here is what I've tried:

Code: Select all

$ convert 48x48.jpg 100x100.jpg 150x150.jpg 200x200.jpg icon.ico # it works
$ convert 48x48.jpg 100x100.jpg 150x150.jpg 200x200.jpg icon.icns # it creates .icns file containing only 48x48.jpg
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: multi resolution ICNS generation

Post by snibgo »

"convert -list format" shows the formats that your version of IM can read/write. For me, ".ICNS" is not listed.
snibgo's IM pages: im.snibgo.com
Post Reply