I am converting eps (Encapsulated PostScript) files to jpeg files using ghostscript. I use the following command:
gswin32.exe -sDEVICE=jpeg -dJPEGQ=100 -dNOPAUSE -dBATCH -dSAFER -r600x600 -dGraphicsAlphaBits=4 -dUseCIEColor -dEPSCrop -sOutputFile="a.jpeg" b.eps
The input eps files have a white background (I only have a clipping path). What I need to do is change this white background to a different color in the output images, or it would be even better if I could make them transparent (the output file format would be png). How can i do this?
source share