jagadeeshbalu
jagadeeshbalu

Reputation: 39

unix command in php

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

Answers (2)

ahmet2106
ahmet2106

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

Your Common Sense
Your Common Sense

Reputation: 157828

system("convert alpha_extract.png -background Yellow -alpha shape alpha_shape.png");

Upvotes: 1

Related Questions