喜而有一些建議,我們可以從圖像笨根據您可以調整與image_lib圖像CI文件調整圖像和創建縮略圖
create_thumb FALSE TRUE/FALSE (boolean) Tells the image processing function to create a thumb. R
thumb_marker _thumb None Specifies the thumbnail indicator. It will be inserted just before the file extension, so mypic.jpg would become mypic_thumb.jpg R
所以在這裏創造更多的縮略圖選項是我的代碼
$config_manip = array(
'image_library' => 'gd2',
'source_image' => "./uploads/avatar/tmp/{$this->input->post('new_val')}",
'new_image' => "./uploads/avatar/{$this->input->post('new_val')}",
'maintain_ratio'=> TRUE ,
'create_thumb' => TRUE ,
'thumb_marker' => '_thumb' ,
'width' => 150,
'height' => 150
);
$this->load->library('image_lib', $config_manip);
$this->image_lib->resize();
我會承擔這個代碼重新調整我的形象,也創建縮略圖,但我只能獲得指定的尺寸和_tump後綴一個圖像
我阿爾斯Ø嘗試添加該代碼手動創建第二圖像,但仍然不工作,我只能得到一個圖像
$this->image_lib->clear();
$config_manip['new_image'] =
"./uploads/avatar/thumbnail_{$this->input->post('new_val')}";
$config_manip['width'] = 30 ;
$config_manip['height'] = 30 ;
$this->load->library('image_lib', $config_manip);
$this->image_lib->resize();
你想要什麼結果?你想修改原始尺寸,然後創建一個30x30的拇指圖像? – 2012-07-16 12:31:11
實際上我的原始圖像是在temp文件夾中出於安全原因,我想在我的頭像文件夾中創建一個已調整大小的縮略圖和縮略圖 – max 2012-07-16 12:34:27
如果您刪除'create_thumb',那麼這兩部分代碼看起來會訣竅。我不知道你可以在'「{}」'裏面運行函數嗎? – 2012-07-16 12:36:45