I have got the following problem:
I want to convert an eps file to an png file and do a resize, but the background of the png file has to be transparent.
Maybe the the following code in php is wrong, but it does everything I want except the transparency:
Code: Select all
exec("convert -resize x283 -clip " . $eps . " " . $png);
Thanks.
See you
CaptainFuture