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按坐标裁图的主要内容,如果未能解决你的问题,请参考以下文章

深度学习AI构图智能裁图显著性检测美感质量评价

php 使用WP REST API计算纬度和经度坐标之间的距离,并返回按用户c的距离排序的帖子

超级有用的9个PHP代码片段

PHP必用代码片段

PHP代码-psysh调试代码片段工具

超实用的php代码片段