| #1268 | $pic_arr = current($pic_arr); |
| #1269 | |
| #1270 | $path = 'upload/'.$table.'/'.$pic_arr['filepath']; |
| #1271 | $pic = image::thumb_name($path); |
| #1272 | $src_file = ROOT_PATH.$path; |
| #1273 | $dst_file = ROOT_PATH.$pic; |
| #1274 | if( !is_file($dst_file) && $models ) { |
| #1275 | image::thumb($src_file, $dst_file, $models['width'], $models['height'], $this->cfg['thumb_type'], $this->cfg['thumb_quality']); |
| #1276 | return $path; |
| #1277 | }else{ |