using the following command:
convert -resize 2550x3300 -density 450x450 -units pixelsperinch -quality 70 -background white -flatten AboutStacks.pdf output_450.jpg
I get:

the exact commands called by the application are:
[paperclip] identify -format %wx%h '/var/folders/EX/EXX73QxuHMyRzfmtqLOoyU+++TI/-Tmp-/stream20110824-2522-h067yl-0.pdf[0]' 2>/dev/null
[paperclip] convert -density 450x450 -units pixelsperinch -quality 70 -background white -flatten '/var/folders/EX/EXX73QxuHMyRzfmtqLOoyU+++TI/-Tmp-/stream20110824-2522-h067yl-0.pdf[0]' -resize "2550" '/var/folders/EX/EXX73QxuHMyRzfmtqLOoyU+++TI/-Tmp-/stream20110824-2522-h067yl-020110824-2522-12klnpm-0.jpg' 2>/dev/null
but when the same app runs on Heroku (the production server) it produces the following image:

My development machine is running:
Version: ImageMagick 6.7.0-0 2011-06-07 Q16 http://www.imagemagick.org
Heroku is running:
Version: ImageMagick 6.6.0-4 2010-06-01 Q16 http://www.imagemagick.org
Can anyone suggest where I should be looking?
-Ewen