Search found 5 matches
- 2014-01-28T13:01:28-07:00
- Forum: Users
- Topic: convert not obeying -compress None option?
- Replies: 8
- Views: 6418
Re: convert not obeying -compress None option?
That was a good suggestion. Installed imagemagic in windows 7 VM and this command seems to work: convert sts256.png -compress none ^ "(" -clone 0 -resize 16x16 -compress none ")" ^ "(" -clone 0 -resize 24x24 -compress none ")" ^ "(" -clone 0 -resize 32x32 -compress none ")" ^ "(" -clone 0 -resize ...
- 2014-01-28T10:53:32-07:00
- Forum: Users
- Topic: convert not obeying -compress None option?
- Replies: 8
- Views: 6418
Re: convert not obeying -compress None option?
I'm running these commands on a Linux system with the intent to create icons for a Windows distribution of our product. We need to provide icons in different formats compatible with different target OS. I was hoping we can actually produce the windows icons using imagemagic commands on Linux. This ...
- 2014-01-27T18:59:12-07:00
- Forum: Users
- Topic: convert not obeying -compress None option?
- Replies: 8
- Views: 6418
Re: convert not obeying -compress None option?
A bit more trial and error and this is the closest I've gotten so far: convert sts512.png -compress none \ \( -clone 0 -resize 16x16 -compress none \) \ \( -clone 0 -resize 24x24 -compress none \) \ \( -clone 0 -resize 32x32 -compress none \) \ \( -clone 0 -resize 48x48 -compress none \) \ \( -clone ...
- 2014-01-27T18:07:27-07:00
- Forum: Users
- Topic: convert not obeying -compress None option?
- Replies: 8
- Views: 6418
Re: convert not obeying -compress None option?
Thanks... the command you suggest works but only gives half of the icons needed (only '8bit' version of each image). For whatever reason, the .ico file for Eclipse launcher needs two versions of each icon 16x16 - 48x48 one version needs to be 8bit and the other 32 bit. For the 256x256 it needs only ...
- 2014-01-27T14:51:17-07:00
- Forum: Users
- Topic: convert not obeying -compress None option?
- Replies: 8
- Views: 6418
convert not obeying -compress None option?
I'm trying to create a .ico file for a Eclipse icon for windows users. This is the shell code I'm using: $ convert sts512.png -border 0 -compress None \ \( -clone 0 -resize 16x16 -colors 256 -depth 8 \) \ \( -clone 0 -resize 24x24 -colors 256 -depth 8 \) \ \( -clone 0 -resize 32x32 -colors 256 ...