crop using coordinates?

See all posts See thread Reply

Re: crop using coordinates? new!
by colin, 16 years, 2 months ago
Try something like this:
if ($handle->uploaded) {
  if ($handle->file_is_image) {
    $handle->image_convert = 'jpg';
    $handle->image_crop = array($y1, $handle->image_src_x - $x2, $handle->image_src_y - $y2, $x1);
    $handle->process('/my/dir/');
  }
}
Reply