Consider these ways of converting the image:
Code: Select all
convert -compress Fax -density 200 -units pixelsperinch this.png that-i.pdf
convert -compress Fax -density 200 -units pixelsperinch -negate this.png that-ii.pdf
convert this.png png:- | convert -compress Fax -density 200 -units pixelsperinch - that-iii.pdf
This happens on Mac OS X with ImageMagick installed via macports. The port version is 6.5.5-7_0+q16, and convert -version says: ImageMagick 6.5.5-7 2009-09-12 Q16.
On a side note, the arguments -units pixelsperinch are really necessary here, in spite of the documentation stating that pixels per inch is the default unit. Otherwise it density appears to be assumed to be in pixels per centimeter. Either the software or the documentation needs to be changed.