2013-06-20 74 views
2

我正在使用WAMP服务器,并且想要使用CI在数据库中上传图像。数据库中的图像变量是blob数据类型。我的问题如下:如何使用CodeIgniter在数据库中存储和检索图像

1)如何存储图像而不是文件名,我应该使用哪些数据类型?

2)如何从数据库中检索图像?

我的控制器代码:

<?php class Image_control extends CI_Controller{ 
function index() 
{ 
    //$this->load->view('image_view'); 

    //$this->Image_model->do_upload(); 

    $data['images']=$this->Image_model->get_images(); 
    $this->load->view('image_view',$data); 
} 
function do_upload() 
{ 
    $config = array(
     'allowed_types' => 'jpg|png|bmp', 
     'upload_path'=>'./images1/', 
     'max_size'=>2000 
    ); 
    $this->load->library('upload',$config); 
    if (!$this->upload->do_upload()) { 
     $errors[]=array('error'=>$this->upload->display_errors()); 
     $this->load->view('image_view',$errors); 
    } 
    $image_path=$this->upload->data(); 
    $file_name=$image_path['file_name']; 
    $config = array(
     'a_name' => $this->input->post('a_name'), 
     'a_details'=>$this->input->post('a_info'), 
     'a_photo'=>$file_name 
    ); 
    $insert=$this->db->insert('animalstore',$config); 
    return $insert; 
} 
} 
?> 

我的模型代码:

<?php class Image_model extends CI_Model { 
function get_images() 
{ 
    $query = $this->db->get('animalstore'); 
    if($query->num_rows > 0) 
    { 
     foreach($query->result() as $rows) 
     { 
      $data[] = $rows; 
     } 
     return $data; 
    } 
} 
} 
?> 

最后这里是我的看法代码:

<?php 
    echo form_open_multipart('image_control/do_upload'); 
    echo form_input('a_name','Animal Name'); 
    echo form_input('a_info','Animal Information'); 
    echo form_upload('userfile'); 
    echo form_submit('upload','Upload'); 
    echo form_close(); 
?> 

<?php foreach ($images as $image):?> 
<h1><?php echo $image->a_name;?></h1> 
<h1><?php echo $image->a_details;?></h1> 
<img src = "/<?php// echo ltrim($image->a_photo, '/'); ?>" > 
<img src="http://localhost/ci_test/images1/<?php echo $image->a_photo;?>"/> 
<img src="<?php //echo sprintf("images/%s", $image['screenshot']);?>" /> 
<h1><?php// echo $image->a_photo;?></h1> 
<?php endforeach; ?> 

我试着以不同的方式解决问题并搜索我的问题,但没有找到任何合适的答案。

+3

不要将图像存储在数据库中http://stackoverflow.com/questions/6472233/can-i-store-images-in-mysql – user20232359723568423357842364

回答

6

请勿将文件存储在数据库中!

这总是一个糟糕的设计理念。将文件存储在文件系统中,并简单地存储文件名并指向文件,这将为您在将来节省很多麻烦。

+1

-1为过时的想法。 – gustavohenke

+1

我不同意,当服务器在群集上时会发生什么?以及备份上发生了什么?因为我最好的设计方法是将图像存储在数据库中。 –

+1

-1用于提供意见而不是添加解决方案。可移植性例如是在数据库中存储图像(或其他文件)的许多优点之一。 –

2
// uploading 
public function do_upload(){ 
... 

$image_path=$this->upload->data(); 
$uploaded_image = $image_path['full_path']; 

// Read the file 
$fp = fopen($uploaded_image, 'r'); 
$data = fread($fp, filesize($uploaded_image)); 
$data = addslashes($data); 
fclose($fp); 

// here you can easy insert $data to 'a_photo' column.  

} 


// Viewing, $image_id is row id 
public function getImage($image_id){ 

// select $row from database as usual and then 

$content = $row['a_photo']; 
echo '<img src="data:image/jpeg;base64,'.base64_encode($content).'">'; 
} 

在模板:

<?php getImage(12); ?> 

,其中12是行ID。

+1

为什么要在模板/视图中调用控制器方法? –

+0

这只是一个展示它如何工作的例子。在现实世界中,getImage()将在控制器中调用,结果赋给某个模板变量,然后显示在模板中。而在现实世界中,TravisO的回答是完全正确的:) – ToxaBes

0

试试这个代码

机型代码

function do_upload() { 

    $config = array(
      'allowed_types' => 'jpg|png|bmp', 
      'upload_path'=>'./images1/', //make sure you have this folder 
      'max_size'=>2000 
     ); 

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

     if ($this->upload->do_upload()) { 
      echo "Upload success!"; 
     } else { 
      echo "Upload failed!"; 
     } 
    $image_data = $this->upload->data(); 

    } 

function get_images() 
    { 
     $query = $this->db->get('animalstore'); 
     return $query; 
    } 

function Save_gallery($in) 
{ 
$save=$this->db->insert('animalstore',$in); 
return $save; 
} 

控制器代码

function index() 
{ 
    $this->load->model('Image_control'); //call a models 

    if ($this->input->post('upload')) { 

    $in=array(); 

    $in['a_name'] = $this->input->post('a_name'), 
    $in['a_details'] = $this->input->post('a_info'), 
    $in['a_photo']=$_FILES['userfile']['name']; 

    if($this->Image_model->do_upload()) { 

    echo $this->upload->display_errors(); 

    }else { 

    $this->Image_model->Save_gallery($in); 

    header('location:index'); 
    } 

    $data['images']=$this->Image_model->get_images(); 
    $this->load->view('image_view',$data); 
} 

视图

<?php 
    echo form_open_multipart('image_control/index'); 
    echo form_input('a_name','Animal Name'); 
    echo form_input('a_info','Animal Information'); 
    echo form_upload('userfile'); 
    echo form_submit('upload','Upload'); 
    echo form_close(); 
?> 

<?php foreach ($images as $image):?> 
<h1><?php echo $image['a_name'];?></h1> 
<h1><?php echo $image['a_details'];?></h1> 
<?php echo '<img src ="'. base_url().'images1/'.$image['a_photo'].'" >"; 
endforeach; ?> 
+0

这不会将它存储在数据库中 –

0

这里有一个快速的东西我用小PNG缩略图。 这些存储在名为“IMAGE”的字段中的名为“coreg”的表中。字段类型是LONGBLOB。每次上传都会覆盖以前的图像。在实际应用中的视图文件显示为一个iframe:

浏览文件上传(最好使用过程中的CI特定形式的标签,但你的想法)

add_image。PHP:

Current image: 
    <img src='/media/png/coreg/<?=$coregID?>' /> 
    <? if(isset($error)){ echo $error; }?> 
    <form method='post' enctype="multipart/form-data" action='add_image/<?=$coregID?>'> 
     <input name="userfile" type="file" class='vLink' /> 
     <input name="submitbtn" type="submit" value=" upload &amp; overwrite " class='eLink' /> 
    </form> 

CONTROLLER示出图像

更优雅将是使用一个视图而不是回声和到DB逻辑移入模型,但是这示出了功能性更好IMHO:

忽略原始

require_once dirname(__FILE__) . "/base.php"; 

     class Media extends BaseController { 

     function __construct() { 
      parent::__construct(); 
     } 


     function png($table,$id) { 
      $this->db->where('ID',$id); 
      $r = $this->db->get($table); 
      if($r->num_rows){ 
       $r = $r->result_array(); 
       header("Content-Type: image/png"); 
       echo $r[0]['IMAGE']; 
      } 
     } 


    } 

控制器上传图片:

function add_image($coregID){ 
     $data['coregID'] = $coregID; 
     $data['error'] = ''; 
     if(isset($_POST['submitbtn'])){ 
      $config['upload_path'] = './assets/img/coreg/'; 
      $config['allowed_types'] = 'png'; 
      $config['max_size'] = '100'; 
      $config['max_width'] = '350'; 
      $config['max_height'] = '350'; 
      $config['file_name'] = $coregID.".png"; 
      if(file_exists($config['upload_path'].$config['file_name'])){ 
       unlink($config['upload_path'].$config['file_name']); 
      } 
      $this->load->library('upload', $config); 

      if (! $this->upload->do_upload()){    
       $data['error'] = $this->upload->display_errors(); 
      } else { 
       $this->upload->data(); 
       // now move the image into the DB 
       $fp = fopen($config['upload_path'].$config['file_name'], 'r'); 
       $data = fread($fp, filesize($config['upload_path'].$config['file_name'])); 

       $this->db->where('ID',$coregID); 
       $this->db->update('COREG',array('IMAGE' =>$data)); 
       fclose($fp); 
       // optionally delete the file from the HD after this step 
       //unlink($config['upload_path'].$config['file_name']); 
      } 
     } 

      $this->load->view("add_image", $data); 

    } 
相关问题