我有一个成功的上传脚本,它返回路径(后来插入到DB表中)。现在我意识到,由于我的网站应该允许大照片(不是尺寸而不是尺寸),我应该尝试调整照片大小(以MB为单位)。我在CI中遇到了图像处理。如何使用给定路径调整图片大小并删除原始图片(不确定是否自动完成)?下面的代码显示了我上传功能的最后一位:
/*Image Manipulation Class*/
$config['image_library'] = 'gd2';
$config['source_image'] = $fullImagePath;
$config['create_thumb'] = FALSE;
$config['maintain_ratio'] = TRUE;
$this->load->library('image_lib', $config);
$this->image_lib->resize();
return $fullImagePath;