Codeigniter图像调整大小不正常

时间:2013-04-05 06:04:38

标签: codeigniter

我想将上传的图片调整为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。

1 个答案:

答案 0 :(得分:0)

看看这是否有帮助。 以下是完成您要查找的任务所需的类的链接

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