ソース画像の幅/高さが設定したサムの幅/高さよりも小さい場合、codeigniter イメージ クラスには組み込みまたは自動的に SKIP サムが作成されるのではないかと考えています。
そうでない場合、どのように対処しますか?
サムネイルの生成は完了しましたが、幅:200px、高さ:200px の画像をアップロードし、つまみの設定が幅:400px、高さ:400px の場合、つまみが作成され、つまみの見栄えが悪くなります。
編集済み
$config['config_here'];
$this->load->library('image_lib', $config);
if($arr['image_width'] <= $config['width'] && $arr['image_height'] <= $config['height']) {
//I don't want to resize the image BUT I want it to copy to a filename with thumb_marker
//How to do it because I already have the $config['create_thumb'] = TRUE; at above.
}else{
$this->image_lib->resize();
}