I am trying to convert PDFs to JPGs. For the most part I am having no problems doing so using the following command:
Code: Select all
convert -density 150 filename.pdf -scale 1000x1000 filename.jpg
In fact, this always works on two machines. It is only on a third machine that it does not work as expected. On this third machine the black lines around table cells and the black text do not appear in the JPG. Gray lines around table cells do appear. I can't identify anything different about the third machine to even investigate further.
Does anyone have any idea on what might be causing this or have suggestions of things to look for?
As a possible work-around I decided to try the following command:
Code: Select all
convert -density 150 filename.pdf -resize 1000x1000 filename.jpg
This works as expected on all three machines.
What I don't understand is why resize works but scale does not. Any ideas?
Any help or pointers would be appreciated. Thanks.