Is there a way to have a Codeigniter controller return an image?

后端 未结 7 1302
隐瞒了意图╮
隐瞒了意图╮ 2021-02-08 01:59

I was wondering if there was a way for a controller to, instead of returning a string, or a view, return an image (be it JPG, PNG etc). For example, instead of ending with a $t

7条回答
  •  野趣味
    野趣味 (楼主)
    2021-02-08 02:34

    I would do a

    $computedImage = 'path/to/the/image.ext';
    $this->load->helper('file');
    $this->output->set_content_type(get_mime_by_extension($computedImage))->set_output(file_get_contents($computedImage));
    

    If this helps. Cheers!

提交回复
热议问题