文字水印<?php$dst_path='./upload/01.jpg';//创建图片的实例$dst=imagecreatefromstring(file_get_contents($dst_path));//打上文字$font='./simsun.ttc';//字体$black=imagecolorallocate($dst,0x00,0x00,0x00);//字体颜色imagefttext($dst,13,0,60,20,$black,$font,'快乐编程');//输出图片list...
查看全文