Skip to content

A Library which can be used to crop images in Android similar to Facebook and Telegram

Notifications You must be signed in to change notification settings

sathiamour/PhotoCrop

 
 

Repository files navigation

PhotoCrop

Build Status Android Arsenal Download

alt text

The PhotoCrop is an image cropping tool. It provides a way to set an image in XML and programmatically, and displays a resizable crop window on top of the image.Calling the method getCroppedImage() will then return the Bitmap marked by the crop window.

It gives the feature of cropping an image where image can resize,zoom whereas cropper window remains static similar to facebook Users can get both circularly cropped and rectangular cropped images.Cropping window also takes circular and rectangular shapes.

#Usage

In your app build.gradle add

	compile 'com.albinmathew:photo-crop-library:1.0.2'
    <com.albinmathew.photocrop.photoview.PhotoView
        android:id="@+id/iv_photo"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scaleType="center" />
    <com.albinmathew.photocrop.cropoverlay.CropOverlayView
        android:id="@+id/crop_overlay"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        app:guideLines="false"
        app:drawCircle="true"
        app:borderColor="#FF56FF1F"
        app:marginSide="20dp"
        app:marginTop="50dp" />

Features

  • Out of the box zooming, using multi-touch and double-tap.
  • Scrolling, with smooth scrolling fling.
  • Works perfectly when using used in a scrolling parent (such as ViewPager).
  • Allows the application to be notified when the displayed Matrix has changed. Useful for when you need to update your UI based on the current zoom/scroll position.
  • Allows the application to be notified when the user taps on the Photo.

Credits

The library is made by combining two libraries

  1. https://github.com/chrisbanes/PhotoView
  2. https://github.com/edmodo/cropper

License

Copyright 2015 Albin Mathew

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

About

A Library which can be used to crop images in Android similar to Facebook and Telegram

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Java 100.0%