我正在使用Cropper作为裁剪图像的GUI。 Cropper从顶部和左侧给出了X和Y位置以及图像的最终宽度和高度。我将这些数字传递给隐藏的输入字段。 在CodeIgniter中,我使用imagemagick使用以下代码裁剪图像:
$this->load->library('image_lib');
$config['image_library'] = 'imagemagick';
$config['library_path'] = '/Applications/MAMP/Library/bin/';
$config['source_image'] = "upload/".$data['image']['file_name'];
$config['x_axis'] = $post['dataX'];
$config['y_axis'] = $post['dataY'];
$config['width'] = $post['dataWidth'];
$config['height'] = $post['dataHeight'];
$this->image_lib->initialize($config);
if ( ! $this->image_lib->crop()) {
echo $this->image_lib->display_errors();
}
ImageMagick使用像这样的代码
$cmd = $this->library_path.' -quality '.$this->quality;
/* ... */
if ($action === 'crop')
{
$cmd .= ' -crop '.$this->width.'x'.$this->height.'+'.$this->x_axis.'+'.$this->y_axis;
}
/* ... */
$cmd .= ' '.escapeshellarg($this->full_src_path).' '.escapeshellarg($this->full_dst_path).' 2>&1';
/* ... */
@exec($cmd, $output, $retval);
基本上有一条线:-crop 100x500 + 10 + 10。 此线在4轴处裁剪图像:
此外,我将新维度存储在我的数据库中:
$this->db->where('id', $id);
$this->db->update("images", array(
'width' => $post['dataWidth'],
'height' => $post['dataHeight']
));
裁剪后,我可以比较文件的尺寸和数据库中的值。除非我不改变裁剪的纵横比,否则值是相同的。 当我更改宽高比时,图像以旧的宽高比裁剪。 我无法弄明白为什么。
如果您需要更多代码,请告诉我。
答案 0 :(得分:0)
请更改您的配置文件,如此
$config = array(
'source_image' => $upload_path.$image_data['file_name'],
'maintain_ratio' => FALSE,
'width' => 220,
'height' => 150,
'x_axis' => 350,
'y_axis' => 50
);
$this->image_lib->clear();
$this->image_lib->initialize($config);
$this->image_lib->crop();
了解更多详情Ckick here并查看示例