I am trying to add a background to a postscript text (generated with latex). My first attempt was:
Code: Select all
convert \
-density 600 \
-size 1935x1062 \
plasma:yellow-limegreen \
-fill black \
-gravity center \( labels4.ps -trim +repage \) \
-composite \
-rotate -90 \
output-600.png
Code: Select all
MAGIC_TMPDIR=/var/tmp convert \
-density 1200 \
-size 3870x2124 \
plasma:yellow-limegreen \
-fill black \
-gravity center \( labels4.ps -trim +repage \) \
-composite \
-rotate -90 \
output-1200.png
Any ideas what's going wrong here?