摘要: /** * 按比例缩略图片 */ public function actionThumbnail() { //调整php分配内存大小,避免出现处理图像的内存不足 if(intval(ini_get('memory_limit')) $imgh?(1000/$imgw):(1500/$imgh); //以最长边作为缩放参考... 阅读全文
posted @ 2018-07-16 18:10 LiuLiwei 阅读(134) 评论(0) 推荐(0) 编辑
摘要: /** * 图片平均分割 * $h = 23, $w = 8 * 保存:web/upload_pic/Cut */ public function actionCutPng() { $filename = dirname(dirname(dirname(dirname(__FILE__)))).'\web\upload_pi... 阅读全文
posted @ 2018-07-16 18:09 LiuLiwei 阅读(189) 评论(0) 推荐(0) 编辑
摘要: /** * 按坐标裁图 * 参数:起始坐标,裁剪长宽,图片 * 坐标($h,$w) * 长宽($height,$weight) */ public function actionCutByPoint() { // $data = $_POST; $data = $_GET; $f... 阅读全文
posted @ 2018-07-16 18:08 LiuLiwei 阅读(270) 评论(0) 推荐(0) 编辑