PHP按坐标裁图
Posted LiuLiwei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP按坐标裁图相关的知识,希望对你有一定的参考价值。
/** * 按坐标裁图 * 参数:起始坐标,裁剪长宽,图片 * 坐标($h,$w) * 长宽($height,$weight) */ public function actionCutByPoint() { // $data = $_POST; $data = $_GET; $filename = dirname(dirname(dirname(dirname(__FILE__)))).‘webupload_pic est114.png‘; $source = imagecreatefrompng($filename); list($PNGWidth, $PNGHeight) = getimagesize($filename); $thumb = ImageCreateTrueColor( $data[‘weight‘],$data[‘height‘]); imagecopyresized( $thumb, $source, 0, 0, $data[‘w‘], $data[‘h‘], $data[‘weight‘], $data[‘height‘], $data[‘weight‘], $data[‘height‘]); imagejpeg( $thumb , "./upload_pic/Cut/{$data[‘w‘]}-{$data[‘h‘]}.jpg" ,100); }
以上是关于PHP按坐标裁图的主要内容,如果未能解决你的问题,请参考以下文章