コントローラーで次のコードを使用しています。
//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">
コントローラーに入っていますが、画像が表示されていません。オバマ ファイルは正しいディレクトリにあります。理由がわかりません。