我有在codeigniter中上传图片的功能,在这里我可以上传任何图片,但是当我需要在我的网站上显示这些图片时,我会使用这个代码:-
<img src="uploads/<?=$user->pic?>" width="250px" height="200px" />
如果图像最大超过 250,则图像显示不佳。
所以我怎么能为我的照片做拇指。
public function do_upload($field) {
$config['upload_path'] = './uploads/';
$config['allowed_types'] = 'gif|jpg|png';
$config['max_size'] = '1000';
$config['max_width'] = '1024';
$config['max_height'] = '768';
$this->load->library('upload', $config);
if (!$this->upload->do_upload($field))
{
$error = array('error' => $this->upload->display_errors());
return $error;
}
else
{
$updata =$this->upload->data();
$data = $updata['raw_name'].$updata['file_ext'];
return $data;
}
}