我正在尝试使用ImageMagick生成图像,请检查以下代码:
<?
$label=$_POST["label"];
$image =$_POST["image"];
$cmd = " -background transparent label:\"$label\" -stroke red -strokewidth 0 ".
" \( -clone 0 -tile \"" . $image . "[0]\" -stroke red -strokewidth 0 -gravity center -annotate +0+0 \"$label\" \) ".
" \( -clone 0 -tile \"" . $image . "[1]\" -stroke red -strokewidth 0 -gravity center -annotate +0+0 \"$label\" \) ".
" \( -clone 0 -tile \"" . $image . "[2]\" -stroke red -strokewidth 0 -gravity center -annotate +0+0 \"$label\" \) ".
" \( -clone 0 -tile \"" . $image . "[3]\" -stroke red -strokewidth 0 -gravity center -annotate +0+0 \"$label\" \) ".
" -delete 0 -set delay 20 -loop 0 -trim +repage -layers Optimize ";
$array=array();
echo "<pre>";
exec("convert $cmd masked.gif 2>&1", $array);
echo "<br>".print_r($array)."<br>";
echo "</pre>";
echo "<img src='masked.gif'>";
?>
通过生成名为masked.gif
的图像,上面的代码可以正常工作,但我现在需要做两件事:
请帮我解决这个问题。感谢您的回复。
答案 0 :(得分:1)
// your command here $directory = "/data/images/coolpics/" $name = uniqid(); exec(escapeshellcmd("convert $cmd $directory$name 2>&1"), $array);
请注意,您将POST值直接传递给系统命令,这可能是非常严重的安全性失败。使用escapeshellcmd确保您的系统安全。
答案 1 :(得分:0)
获取唯一文件名的简单解决方案是使用时间戳(例如microtime()
(doc reference)。要将图像保存在另一个文件夹中,只需添加exec参数的路径。
整个exec命令看起来像这样:
exec("convert $cmd /your/path/".str_replace(".","-",microtime(true)).".gif 2>&1", $array);