我从用户界面发送了source_image
,x_axis
,y_axis
,height
和width
来处理图像(在这种情况下,我裁剪了图像),这是我的代码:
$this->load->library('image_lib');
$image = $this->input->post('source_image');
//array configuration for clock-wise and counter-clock-wise
$angle = array(
0 => 0,
90 => 270,
180 => 180,
270 => 90
);
$rotation = $this->input->post('rotation');
$x = $this->input->post('x');
$y = $this->input->post('y');
$width = $this->input->post('width');
$height = $this->input->post('height');
$result = array();
$config['image_library'] = 'gd2';
$config['source_image'] = $image;
$config['x_axis'] = $x;
$config['y_axis'] = $y;
$config['maintain_ratio'] = TRUE;
$config['width'] = $width;
$config['height'] = $height;
$this->image_lib->initialize($config);
if (!$this->image_lib->crop()) {
$result = array(
'result' => FALSE,
'error' => $this->image_lib->display_errors()
);
}
当我完成图像裁剪后,再次检查它改变的分辨率,例如:
width: 197px;
height: 173px;
当我完成裁剪后应该是那个分辨率,但是当我检查它时分辨率变成了
width: 181px;
height: 173px;
在其他情况下,宽度有时会改变,高度有时会改变。
在配置$config
或其他命令时我错了吗?谢谢
答案 0 :(得分:1)
那么您不应该使用$config['maintain_ratio'] = TRUE;
(将其设置为false)。
由于启用了maintain_ratio选项,因此图像将尽可能接近 保留 的目标宽度和高度 原始宽高比。
文档:https://www.codeigniter.com/userguide3/libraries/image_lib.html#processing-an-image
请记住,更改比例或将其设置为false,以使尺寸为硬值将导致某些图像歪斜或看起来很奇怪。 CI并没有真正处理此问题的方法,但是还有其他上传库可以添加黑条,同时保持指定的大小,例如:https://github.com/verot/class.upload.php