这个整个教程有没有源码的呢
这个整个教程有没有源码的呢
这个整个教程有没有源码的呢
2017-07-10
<?php
$filename="images/thumb.jpg";
$fileInfo=getimagesize($filename);
$mime=$fileInfo['mime'];
$createfrom=str_replace('/','createfrom',$mime);
$outFun=str_replace('/',null,$mime);
$image=$createfrom($filename);
$red=imagecolorallocatealpha($image,255,0,0,60);
$fontfile='fonts/Doodle Camp.ttf';
imagettftext($image,30,0,0,30,$red,$fontfile,"水印");
header("content-type:.$mime;charset='utf-8'");
$outFun($image);
imagedestroy($image);<?php
$filename="images/thumb.jpg";
$fileInfo=getimagesize($filename);
$mime=$fileInfo['mime'];
$createfrom=str_replace('/','createfrom',$mime);
$outFun=str_replace('/','null',$mime);
$image=$createfrom($filename);
$red=imagecolorallocatealpha($image,255,0,0,60);
$fontfile='fonts/BRITANIC.TTF';
imagettftext($image,30,0,0,30,$red,$fontfile,"水印");
header('content-type:'.$mime);
$outFun($image);
imagedestroy($image);举报