Reputation: 39
convert alpha_extract.png -background Yellow -alpha shape alpha_shape.png
this is unix command in php how can we run in php
Upvotes: 0
Views: 43
Reputation: 5007
Maybe:
$cmd_convert = `convert alpha_extract.png -background Yellow -alpha shape alpha_shape.png`;
Works with some Commands, hope with convert too :)
Upvotes: 0
Reputation: 157828
system("convert alpha_extract.png -background Yellow -alpha shape alpha_shape.png");
Upvotes: 1