Here is a sample image.
https://dl.dropboxusercontent.com/u/286 ... ascino.bmp
However I may have jumped the gun and really have a different problem - aka user error.
What I really want to do is convert the whole directory of images and the command I was trying to use was this to convert all .bmp images :
convert -resize x220^> *.bmp test\
I realized my error when I went to copy the file for you to look at and realized that there was a .jpg file there form my sample command line.
My attempt to convert *.bmp and put the files in the directory test failed to create output .jpg files but still touched and reported the warning for all the .bmp files. So, obviously I'm OK with warnings appearing for files that are not quite right but I cannot figure out how to convert to jpg files and copy to another directory. I have tried:
convert -resize x220^> *.bmp test\*.jpg
convert -resize x220^> *.bmp test
convert -resize x220^> *.bmp test/
I will continue to read the documentation...