Convert PNG to EPS with transparent background
Posted: 2018-08-07T22:59:32-07:00
I have a png image with transparent background and i tried to convert that to an eps file using convert command and got eps image with white background.
I want eps image with transparent background.I have a php application for designing images for tshirt printing,So image transparency is must. Also image quality of output eps image is pretty bad and image size is really big comparing to input size.
I had tried command
convert test.png -resize 1024x1024 -density 300 -units pixelsperinch -quality 100 -compress none -alpha set -flatten -background none -depth 8 test.eps
Is there any option to maintain transparency in output image? Is background white by default? How can we improve output eps image quality?
I want eps image with transparent background.I have a php application for designing images for tshirt printing,So image transparency is must. Also image quality of output eps image is pretty bad and image size is really big comparing to input size.
I had tried command
convert test.png -resize 1024x1024 -density 300 -units pixelsperinch -quality 100 -compress none -alpha set -flatten -background none -depth 8 test.eps
Is there any option to maintain transparency in output image? Is background white by default? How can we improve output eps image quality?