使用CodeIgniter和Cropper进行图像裁剪

时间:2017-12-28 13:11:54

标签: php codeigniter imagemagick crop

我正在使用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轴处裁剪图像:

  1. crop:左起10px的X轴
  2. crop:距离顶部10px的Y轴
  3. crop:右边的$ width-100的X轴
  4. crop:Y-Axis at $ height-500 from the bottom
  5. 此外,我将新维度存储在我的数据库中:

    $this->db->where('id', $id);
    $this->db->update("images", array(
      'width' => $post['dataWidth'],
      'height' => $post['dataHeight']
    ));
    

    裁剪后,我可以比较文件的尺寸和数据库中的值。除非我不改变裁剪的纵横比,否则值是相同的。 当我更改宽高比时,图像以旧的宽高比裁剪。 我无法弄明白为什么。

    如果您需要更多代码,请告诉我。

1 个答案:

答案 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并查看示例