Your server does not support the GD function required to process this type of image.Ci

前端 未结 4 717
有刺的猬
有刺的猬 2020-12-11 04:06

I had done image upload,resized many times in CI. The same code is working in one page but not working in other page . when i display the error it says\" Your server does no

4条回答
  •  时光说笑
    2020-12-11 04:22

    During my project I faced similar problem. This link help me to solve it.

    Replace

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

    with

    $this->load->library('image_lib');
    // Set your config up
    $this->image_lib->initialize($config);
    // Do your manipulation
    $this->image_lib->clear();
    

提交回复
热议问题