0

我想将上传的图像调整为 400 x 350 的比例。我为此使用下面的代码。

$config = array(
        'image_library' => 'gd2',
        'source_image'      => $img_data['full_path'],
        'new_image'         => $this->upload_path. '/thumbs',
        'maintain_ration'   => FALSE,
        'width'             => 350,
        'height'            => 400
    );

    $this->load->library('image_lib', $config);
    $this->image_lib->resize();

Codeigniter 给我的图像是 400 x 340 的比例。

4

1 回答 1

0

看看这是否有帮助。这是完成您寻找的任务所需的课程的链接

http://www.white-hat-web-design.co.uk/blog/resizing-images-with-php/

于 2013-04-05T07:35:05.287 回答