Search found 2 matches
- 2017-09-11T02:57:03-07:00
- Forum: Bugs
- Topic: Posible bug - surprisingly huge icon
- Replies: 4
- Views: 12592
Re: Posible bug - surprisingly huge icon
A icon created by this command: convert 16.png 32.png 64.png 128.png 256.png out.ico Contains: 16x16, 32bit BMP 32x32, 32bit BMP 64x64, 32bit BMP 128x128, 32bit BMP 256x256, 32bit PNG So this is a reason why that files was so big. The question is it correct behavior of convert to do this conversion ...
- 2017-09-05T08:13:26-07:00
- Forum: Bugs
- Topic: Posible bug - surprisingly huge icon
- Replies: 4
- Views: 12592
Posible bug - surprisingly huge icon
I have logo in svg format and i tried to generate icon but generated icons (ico format) are surprisingly huge. Below is what i found: $ for i in 16 32 64 128 256 ; do mogrify -format ico -density 600 -define icon:auto-resize=$i file.svg ; echo -n "$i " ; ll -h file.ico | awk '{print $5}'; done 16 1 ...