Nice, I thought the new docs had more complete info than the old docs, guess I was wrong, thanks.fmw42 wrote:seeIt's weird that this is not document or it is very hidden in the documentation.
http://www.imagemagick.org/Usage/formats/#bmp
Search found 7 matches
- 2012-11-30T15:25:13-07:00
- Forum: Users
- Topic: Create windows XP wallpaper compatible BMP
- Replies: 4
- Views: 7944
Re: Create windows XP wallpaper compatible BMP
- 2012-11-30T13:25:41-07:00
- Forum: Users
- Topic: Create windows XP wallpaper compatible BMP
- Replies: 4
- Views: 7944
Re: Create windows XP wallpaper compatible BMP
That worked perfectly, now I can see my command was giving me BMP4 and I needed BMP3 or BMP2.Jason S wrote:I'm not sure what effect, if any, the -format option has on 'convert'. Try
convert wallpaper.png BMP3:wallpaper.bmp
It's weird that this is not document or it is very hidden in the documentation.
Thanks.
- 2012-11-30T01:10:11-07:00
- Forum: Users
- Topic: Create windows XP wallpaper compatible BMP
- Replies: 4
- Views: 7944
Create windows XP wallpaper compatible BMP
I'm trying to create windows XP wallpaper compatible BMP. After some research I supposed that this would work: convert wallpaper.png -format BMP2 wallpaper.bmp but the output is the same as convert wallpaper.png wallpaper.bmp I'm sure I need BMP2 format and both commands are giving BMP3+ Any ...
- 2012-08-15T21:04:34-07:00
- Forum: Users
- Topic: convert.exe: geometry does not contain image `png.png'
- Replies: 8
- Views: 14800
Re: convert.exe: geometry does not contain image `png.png'
For that simple example delay is set to 0 according to gimp, for more complex ones like the real animations I'm creating with the script I get rubbish and the gif goes png.png size. I guess the batch will just read files several times, hope windows cache helps, anyway I will only process in batch ...
- 2012-08-15T19:51:22-07:00
- Forum: Users
- Topic: convert.exe: geometry does not contain image `png.png'
- Replies: 8
- Views: 14800
Re: convert.exe: geometry does not contain image `png.png'
So lame that I didn't know the parenthesis trick, I think that was the only thing wrong, the parameter order was being kinda tolerated.
Thanks a lot.
Thanks a lot.
- 2012-08-15T19:07:19-07:00
- Forum: Users
- Topic: convert.exe: geometry does not contain image `png.png'
- Replies: 8
- Views: 14800
Re: convert.exe: geometry does not contain image `png.png'
Thanks for the help, I read the page I'm not able to separate all the parameters into settings and commands by myself but I can check every command there and I believe I put them where they should be. So I tried to simplify, moved the settings "delay" and "dispose" before the image, the operations ...
- 2012-08-15T12:42:54-07:00
- Forum: Users
- Topic: convert.exe: geometry does not contain image `png.png'
- Replies: 8
- Views: 14800
convert.exe: geometry does not contain image `png.png'
I'm trying to create a gif from small images that are stored on a single png, the "png.png" file size is 1024x1024. convert -crop 32x32+352+800 +repage -dispose 3 -delay 10 "png.png" -crop 32x32+384+800 +repage -dispose 3 -delay 10 "png.png" -page 0x0 -dispose 3 -delay 100 -size 32x32 xc:Transparent ...