crop-image-layout - 图片裁剪布局

jopen 9年前

Image Cropping Layout

A light-weight image cropping layout, allowing UI customization and cropping box update listener. Image and the selected area (cropping box) is scale and fit into the predefined area.

Current Version: 1.0.5

image-crop

Import

dependencies {      compile 'me.littlecheesecake:croplayout:1.0.5'      ...  }

Usage

EditPhotoView imageView = (EditPhotoView) findViewById(R.id.editable_image);  EditableImage image = new EditableImage(this, R.drawable.photo2);  image.setBox(new ScalableBox(25,180,640,880));    imageView.initView(this, image);    imageView.setOnBoxChangedListener(new OnBoxChangedListener() {      @Override      public void onChanged(int x1, int y1, int x2, int y2) {          //TODO: cropping box updated       }  });

UI Customization

<me.littlecheesecake.croplayout.EditPhotoView      android:id="@+id/editable_image"      android:layout_width="300dp"      android:layout_height="200dp"      android:layout_margin="20dp"      android:background="#fff"      crop:crop_corner_color="#45B4CA"      crop:crop_line_color="#d7af55"      crop:crop_shadow_color="#77ffffff"/>

image_attr

Known Issue

  • actual cropping of the image is not implemented, but only update the selected area (cropping box)
  • crop box will be reset to the full image after rotation
  • image zoom-in is not supported

Developed By

Yu Lu @littlecheesecake.me

项目地址: https://github.com/yulu/crop-image-layout