已采纳回答 / 慕婉清8325264
imagestring ( $image, $size, $angle, $x, $y, $color,$text );你试着把这个函数改为imagettftext($image, $size, $angle, $x, $y, $color,$fontfile,$text)然后把字体文件也加进去如果用的mac就在资源库中的Fonts文件夹中找,windows就按照老师的方法
2016-12-22
已采纳回答 / Seven_io
图片上写的有:Undefined index:loginFlag,这个名字你使用在了session中,那也就是说你没有定义$_SESSION['loginFlag']这个变量。下面的那个错误一样的道理
2016-12-20
已采纳回答 / 冷眼看尽繁华丿
把image.func.php里的session干掉就可以了,因为你已经在image.func.php里开过了,所以再在include.php里开,就会出问题。
2016-12-14
已采纳回答 / 张焕标33
缩略的关键是imagecopyresampled(dst_image(目标图-画布), src_image(原图), dst_x(目标图复制起点x), dst_y(目标图复制起点y), src_x(从原图x起点复制), src_y(从原图y起点复制), dst_w(目标图复制的宽度), dst_h(目标图复制的高度), src_w(原图的宽度), src_h(原图的高度)),把这个函数里面的参数都准备好,接调用,保存,销毁就可以了
2016-12-06
已采纳回答 / KankWei
"id int unsigned auto_increment key,”主键少了primary. 应该是“id int unsigned auto_increment primary key,”. "cId smallint unsigned(10,2) not null" unsigned(10,2)的参数取消掉就好了."cId smallint unsigned not null"
2016-11-17