0

我知道这是一个老问题,但我无法解决。这是我的代码

function add_ZK_mark($inputfile, $outputfile) {
$im = @imagecreatefromjpeg($inputfile);
$bg = @imagecolorallocate($im, 255, 255, 255);
$textcolor = @imagecolorallocate($im, 0, 0, 255);

list($x, $y, $type) = getimagesize($inputfile);
@imagejpeg($im, $outputfile);
@imagedestroy($im);

}

我每次都得到 jpeg 图像类型。使用 signature.js 获取 jpeg 格式的图像。谢谢

4

0 回答 0