all converts are done in Windows:
Version: ImageMagick 6.6.9-4 2011-04-01 Q16
i did convert a rather simple tif file to a png File:
convert input.tif -resize 400x400 png32:output.png
http://home.arcor.de/durius.obsidian/input.tif is 1,8 MB, http://home.arcor.de/durius.obsidian/output.png is 700 kb, which is way to much after this kind of resize.
So i did first a resize to tif:
convert input.tif -resize 400x400 tifout.tif
http://home.arcor.de/durius.obsidian/tifout.tif 104 kb thats more like it. so what will happen when i convert this file to png
convert tifout.tif png32:firsttif.png
http://home.arcor.de/durius.obsidian/firsttif.png 60 kb, yeah
Of course i can do that in one commandline via pipe, but something is wrong here
![Smile :-)](./images/smilies/icon_smile.gif)