Getting ImageMagick convert to not write out extra info
You're searching for the -strip parameter, ie:
convert infile.png -resize 100x100 -strip outfile.png
I found the solution to this problem was adding:
+set date:create +set date:modify
The -strip option was not removing the embedded data, but this does.