-
程序开发
图片裁剪、缩放函数有很多,但是我推荐这两个.有点小修改. //图片裁剪、缩放函数 1. //$filepath图片路径,$percent缩放百分比 function imagepress($filepath,$percent=0.5){ // 图片类型 header(Content-Type: image/jpeg); // 获得新的图片大小 list($width, $height) = getimagesize($filepath); $new_width = $width * $percent; $...
176