I\'m attempting to convert a PDF to a JPEG using ImageMagick.
The PDF: baby_aRCWTU.pdf
The command:
convert -density 260 -profile \'SWOP.icc\' -profile \'sRG
On a site we convert hundreds of PDF's on a daily basis where we need to create JPGs and we found it only reliable to convert the PDF's to postscript first.
We use the "pdftops" command, try
pdftops baby_aRCWTU.pdf baby_aRCWTU.ps
then your convert command above, but on the ps. Works for me, the image is then included.