图像库让我很头疼——不是因为它不好,而是因为每次我尝试用它做一些新的事情时,我都必须重新学习它是如何工作的。至少对我来说,文档有点难以理解。
一开始,我还认为在裁剪之前调整大小更有意义。我不记得确切的原因,但后来我发现最好做相反的事情。我可能错了,但我的代码现在工作正常,所以我会坚持这个策略。
我认为重要的另一件事是将“maintain_ratio”设置为 FALSE 并自己进行计算。
我最近重写了调整大小的函数,我认为它主要是不言自明的,除了我的变量 $top_crop。那是我的“理发师”变量,它试图假设要从顶部脱掉多少。在我的配置文件“设置”中,我将其设置为 20。这意味着在要裁剪的总量中,从顶部减去 20%。换句话说,如果你要裁剪 100px,从顶部取 20,从底部取 80。
无论如何,这是我的裁剪代码。您可以使用它并使其适应您的需求:
function resize_img($data){
if ($data['width'] == 0 || $data['height'] == 0){
return FALSE;
}
$this->config->load('settings');
$ratio = $data['height']/$data['width'];
$targ_ratio = $data['max_ht']/$data['max_wd'];
$top_crop = $this->config->item('crop_top');
if ($targ_ratio >= $ratio){
//too wide
$crop_width = floor($data['height'] / $targ_ratio);
$crop_height = $data['height'];
} else {
//too tall
$crop_width = $data['width'];
$crop_height = floor($data['width'] * $targ_ratio);
}
$img_data = array( 'source_image' => $data['full_path'],
'maintain_ratio' => FALSE,
'x_axis' => round(($data['width'] - $crop_width)/2),
'y_axis' => round(($data['height'] - $crop_height)*$top_crop/100),
'width' => $crop_width,
'height' => $crop_height);
//thumbs have a target path
if ($data['target_path']){
$img_data['new_image'] = $data['target_path'];
//set source for the crop, because for thumbs it will be the thumb folder
$source = $data['target_path'].$data['file_name'];
} else {
$source = $data['full_path'];
}
$this->image_lib->clear();
$this->image_lib->initialize($img_data);
if ($this->image_lib->crop()){
$img_data = array( 'source_image' => $source,
'maintain_ratio' => FALSE,
'width' => $data['max_wd'],
'height' => $data['max_ht']);
$this->image_lib->clear();
$this->image_lib->initialize($img_data);
if($this->image_lib->resize()){
return array('height' => $data['max_ht'], 'width' => $data['max_wd']);
}
}
return $this->image_lib->display_errors();
}