我知道这是一个老问题,但我无法解决。这是我的代码
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格式获取图像。 感谢