我在我的控制器中使用以下代码:
//function to protect images from being accessed directly.
function getImage($img_id){
//code to authenticate user goes here then...
$url = $this->data['base_url'].'system/application/images/c/thumbs/';
$filepath = $url.$img_id;
header("Content-type: image/jpeg");
if(file_exists($filepath)){
echo "we are here";
$img_handle = imagecreatefromjpeg($filepath) or die("");
echo $img_handle;
ImageJpeg($img_handle);
}
}
在我看来,要获取图像,我使用了以下代码:
<img src='<?php echo base_url(); ?>index.php/Controller/getImage/obama.jpg' width="100px">
现在即使它进入控制器,它也不会显示图像。Obama 文件位于正确的目录中。我不知道为什么。