私は codeigniter を初めて使用し、それを使用して最初のアプリケーションを構築したばかりですが、画像からサムネイルを生成することに関しては少し困惑しています。
画像は正しくアップロードされますが、親指は生成されず、エラーは発生しません:(
誰かが私に手を差し伸べてくれることを願っています。チャンスは私がただのシジュウカラであり、スペルミスのような本当に単純なことです。
私の画像モデルのコードは次のとおりです。
<?php
class Image_model extends CI_Model {
var $image_path;
function Image_model(){
parent::__construct();
$this->image_path = realpath(APPPATH.'../'.$this->config->item('dir_dynamic_images'));
}
function do_upload(){
$config = array(
'allowed_types' => "jpeg|gif|jpg|png",
'upload_path' => $this->image_path,
'max_size' => 2000
);
$this->load->library('upload', $config);
$this->upload->do_upload();
$image_data = $this->upload->data();
$config = array(
'source_image' => $image_data['full_path'],
'new_image' => $this->image_path . '/thumbs',
'maintain_ratio' => true,
'width' => 200,
'height' => 200
);
echo $config['new_image'];
$this->load->library('image_lib', $config);
$this->image_lib->resize();
}
}
?>