I'm just getting started with imagemagick so please bear with me : ]
I've been trying to convert a vector pdf into a png. The width of the png should be exactly 900 pixels.
this is the command I tried, however the png is always around 200 pixels (the size the pdf was encoded at):
Code: Select all
convert -size 900 test.pdf test.png
what am I doing wrong?