码迷,mamicode.com
首页 > Web开发 > 详细

PHP按坐标裁图

时间:2018-07-16 18:29:49      阅读:181      评论:0      收藏:0      [点我收藏+]

标签:pos   rom   poi   lis   load   creat   action   col   from   

 /**
     * 按坐标裁图
     * 参数:起始坐标,裁剪长宽,图片
     * 坐标($h,$w)
     * 长宽($height,$weight)
     */
    public function actionCutByPoint()
    {
        // $data = $_POST;
        $data = $_GET;

        $filename = dirname(dirname(dirname(dirname(__FILE__)))).‘\web\upload_pic\test114.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按坐标裁图

标签:pos   rom   poi   lis   load   creat   action   col   from   

原文地址:https://www.cnblogs.com/liuliwei/p/9319066.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!