c361239752 发表于 2011-11-20 00:40:50

菜鸟 发表于 2011-11-21 15:46:29

你的意思是 图片上传之后还显示原图吗?
$config['width'] = $new_width;
$config['height'] = $new_height;
这两项去掉~~~~

c361239752 发表于 2011-11-30 16:25:24

zhlgame 发表于 2011-11-30 17:05:58

用file helper不知道行不行?
$this->load->helper('file');
$string = read_file('./path/to/file.jpg');
$data = $string;
if ( ! write_file('./path/to/file2.jpg', $data))
{
   echo 'Unable to write the file';
}
else
{
   echo 'File written!';
}
我没有试过.user guide里面,只有读取和写入php文件的例子,不知道图像文件是否同样可以操作.

c361239752 发表于 2011-11-30 17:27:38

页: [1]
查看完整版本: CI图片类处理会改变原图,如何不改变原图呢