PHP给照片加水印

    技术2024-12-01  13

    <?php header('Content-type:image/jpeg'); $img=imagecreatefromjpeg('images/2.jpg'); //打开已经存在的图片 $color=imagecolorallocate($img, rand(0, 100), rand(0, 100), rand(0, 100)); imagesx($img);//获取长度 imagesy($img);//获取高度 imagettftext($img, 20, rand(-5, 5), 100, 100, $color, 'font/Parisine-BoldItalic.woff.ttf', 'http://zj.gxu.edu.cn/'); imagejpeg($img); var_dump($img);
    Processed: 0.036, SQL: 9