All Projects → naver → Android Imagecropview

naver / Android Imagecropview

Licence: other
android image crop library

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Android Imagecropview

Tocropviewcontroller
A view controller for iOS that allows users to crop portions of UIImage objects
Stars: ✭ 4,210 (+1771.11%)
Mutual labels:  image, crop, cropping
Rskimagecropper
An image cropper / photo cropper for iOS like in the Contacts app with support for landscape orientation.
Stars: ✭ 2,371 (+953.78%)
Mutual labels:  image, crop, cropping
Igrphototweaks
Drag, Rotate, Scale and Crop
Stars: ✭ 212 (-5.78%)
Mutual labels:  image, crop, cropping
React Native Image Crop Picker
iOS/Android image picker with support for camera, video, configurable compression, multiple images and cropping
Stars: ✭ 5,261 (+2238.22%)
Mutual labels:  image, crop, cropping
Lilliput
Resize images and animated GIFs in Go
Stars: ✭ 1,690 (+651.11%)
Mutual labels:  image, crop
Flutter crop
Crop any widget/image in Android, iOS, Web and Desktop with fancy and customizable UI, in pure Dart code.
Stars: ✭ 107 (-52.44%)
Mutual labels:  image, crop
Ucrop
Image Cropping Library for Android
Stars: ✭ 11,003 (+4790.22%)
Mutual labels:  image, crop
React Avatar Editor
Small avatar & profile picture component. Resize and crop uploaded images using a intuitive user interface.
Stars: ✭ 1,846 (+720.44%)
Mutual labels:  image, crop
Docker Nginx Image Proxy
on the fly image cropping with gravity, resize and compression microservice
Stars: ✭ 79 (-64.89%)
Mutual labels:  image, crop
Mergi
go library for image programming (merge, crop, resize, watermark, animate, ease, transit)
Stars: ✭ 127 (-43.56%)
Mutual labels:  image, crop
Gimage
A PHP library for easy image handling. 🖼
Stars: ✭ 148 (-34.22%)
Mutual labels:  image, crop
Bimg
Go package for fast high-level image processing powered by libvips C library
Stars: ✭ 1,394 (+519.56%)
Mutual labels:  image, crop
Lipo
👄 Free image manipulation API service built on top of Sharp (an alternative to Jimp, Graphics Magic, Image Magick, and PhantomJS)
Stars: ✭ 101 (-55.11%)
Mutual labels:  image, crop
Svelte Easy Crop
A Svelte component to crop images with easy interactions
Stars: ✭ 80 (-64.44%)
Mutual labels:  crop, cropping
Flutter image editor
Flutter plugin, support android/ios.Support crop, flip, rotate, color martix, mix image, add text. merge multi images.
Stars: ✭ 181 (-19.56%)
Mutual labels:  image, crop
Ddperspectivetransform
🔲 Warp image transformation
Stars: ✭ 186 (-17.33%)
Mutual labels:  image, crop
Image Focus
A dependency free utility for cropping images based on a focus point ~2.13kB gzipped
Stars: ✭ 134 (-40.44%)
Mutual labels:  image, cropping
Pixelsdk
The modern photo and video editor for your iPhone / iPad app. A fully customizable image & video editing iOS Swift framework.
Stars: ✭ 192 (-14.67%)
Mutual labels:  crop, cropping
React Easy Crop
A React component to crop images/videos with easy interactions
Stars: ✭ 1,093 (+385.78%)
Mutual labels:  crop, cropping
Nova Advanced Image Field
🌄📐 A Laravel Nova advanced image field with cropping and resizing using Cropper.js and Intervention Image
Stars: ✭ 67 (-70.22%)
Mutual labels:  image, crop

ImageCropView

License Build Status

An Android library that lets you implement image crop. ImageCropView crops image by moving image under fixed crop area like instagram and iOS.
Image zoom in/out is base on sephiroth74's ImageViewZoom.

Screenshot

Screenshot in PHOLAR
screenshot screenshot

Screenshot image source http://bts.ibighit.com/photo.php

Installation

Android Studio
Android SDK 28 Android SDK Build-tools 28.0.3
(You can change other sdk and build-tools)

Usage

Gradle
dependencies {
	implementation "com.naver.android.helloyako:imagecropview:1.2.3"
}

ImageCropView Option

XML

<com.naver.android.helloyako.imagecrop.view.ImageCropView
         xmlns:imagecrop="http://schemas.android.com/apk/res-auto"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         imagecrop:outsideLayerColor="#99000000"
         imagecrop:setInnerGridMode="on"
         imagecrop:gridInnerStroke="1dp"
         imagecrop:gridInnerColor="#66ffffff"
         imagecrop:setOuterGridMode="on"
         imagecrop:gridOuterStroke="1dp"
         imagecrop:gridOuterColor="#ffffff"/>

JAVA

imageCropView.setGridInnerMode(ImageCropView.GRID_ON);
imageCropView.setGridOuterMode(ImageCropView.GRID_ON);

Demo

APK

qrcode

License

ImageCropView is licensed under the Apache License, Version 2.0. See LICENSE for full license text.

    Copyright (c) 2015 Naver Corp.
    @Author Ohkyun Kim

    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.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].