2010-05-19 7 views
0

convertir alpha_extract.png -background forme jaune -alpha alpha_shape.pngcommad unix en php

c'est commande unix en php comment peut-on exécuter en php

Répondre

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

je l'exécute mais n'obtiens pas le résultat alpha_shape.png image – jagadeeshbalu

+0

le php deamon at-il des permissions d'écriture dans ce répertoire? – catchmeifyoutry

0

Peut-être:

$cmd_convert = `convert alpha_extract.png -background Yellow -alpha shape alpha_shape.png`; 

Fonctionne avec certaines commandes, j'espère avec convertir aussi :)