CropIwa


Source link: https://github.com/steelkiwi/cropiwa

CropIwa

The library is a highly configurable widget for image cropping.

Gradle

Add this into your dependencies block.

compile 'com.steelkiwi:cropiwa:1.0.3' 

Sample

Please see the sample app for library usage examples.

Wiki

The library has a modular architecture, which makes it highly configurable. For info on how to configure CropIwaView refer to the sections below.

One of the useful features is that you don't have to wait for a result - after crop request is done, simply switch to another screen and wait for the result in a form of broadcast.

Usage:

Add CropIwa to your xml:

<com.steelkiwi.cropiwa.CropIwaView
android:id="@+id/crop_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />

Image saving

cropView.crop(new CropIwaSaveConfig.Builder(destinationUri)
.setCompressFormat(Bitmap.CompressFormat.PNG)
.setSize(outWidth, outHeight) //Optional. If not specified, SRC dimensions will be used
.setQuality(100) //Hint for lossy compression formats
.build());

Callbacks

Cropped region saved callback. When crop request completes, a broadcast is sent. You can either listen to it using the CropIwaView intance

cropView.setCropSaveCompleteListener(bitmapUri -> {

//Do something 
}
);
  cropView.setErrorListener(error -> {

//Do something 
}
);

or work directly with a broadcast receiver. The advantage is that it can be used from any part of the app, where you have an access to Context.

CropIwaResultReceiver resultReceiver = new CropIwaResultReceiver();
 resultReceiver.setListener(resultListener);
 resultReceiver.register(context);
  //Don't forget to unregister it when you are done resultReceiver.unregister(context);

You can subscribe for changes in CropIwaViews configs. Listeners will be notified anytime .apply() is called.

cropIwaView.configureOverlay().addConfigChangeListener(listener);
 cropIwaView.configureImage().addConfigChangeListener(listener)

Basic View Configuration

  • Enable user to resize a crop area. Default is true.
app:ci_dynamic_aspect_ratio="true|false"  cropView.configureOverlay()
.setDynamicCrop(enabled)
.apply();
  • Draw a 3x3 grid. Default is true.
app:ci_draw_grid="true|false"  cropView.configureOverlay()
.setShouldDrawGrid(draw)
.apply();
  • Set an initial crop area's aspect ratio.
app:ci_aspect_ratio_w="16" app:ci_aspect_ratio_h="9"  cropView.configureOverlay()
.setAspectRatio(new AspectRatio(16, 9))
.setAspectRatio(AspectRatio.IMG_SRC) //If you want crop area to be equal to the dimensions of an image
.apply();
  • Initial image position. Behavior is similar to ImageView's scaleType.
app:ci_initial_position="centerCrop|centerInside"  cropView.configureImage()
.setImageInitialPosition(position)
.apply();
  • Set current scale of the image.
//Value is a float from 0.01f to 1 cropIwaView.configureImage()
.setScale(scale)
.apply();
  • Enable pinch gesture to scale an image.
app:ci_scale_enabled="true|false"  cropView.configureImage()
.setImageScaleEnabled(enabled)
.apply();
  • Enable finger drag to translate an image.
app:ci_translation_enabled="true|false"  cropView.configureImage()
.setImageTranslationEnabled(enabled)
.apply();
  • Choosing from default crop area shapes. Default is rectangle.
app:ci_crop_shape="rectangle|oval"  cropView.configureOverlay()
.setCropShape(new CropIwaRectShape(cropView.configureOverlay()))
.setCropShape(new CropIwaOvalShape(cropView.configureOverlay()))
.apply();
  • You can set a min-max scale. Default min is 0.7, default max is 3.
app:ci_max_scale="1f"  cropView.configureImage()
.setMinScale(minScale)
.setMaxScale(maxScale)
.apply();
  • Crop area min size.
app:ci_min_crop_width="40dp" app:ci_min_crop_height="40dp"  cropView.configureOverlay()
.setMinWidth(dps)
.setMinHeight(dps)
.apply();
  • Dimensions.
app:ci_border_width="1dp" app:ci_corner_width="1dp" app:ci_grid_width="1dp"  cropView.configureOverlay()
.setBorderStrokeWidth(dps)
.setCornerStrokeWidth(dps)
.setGridStrokeWidth(dps)
.apply();
  • Colors.
app:ci_border_color="#fff" app:ci_corner_color="#fff" app:ci_grid_color="#fff" app:ci_overlay_color="#fff"  cropView.configureOverlay()
.setBorderColor(Color.WHITE)
.setCornerColor(Color.WHITE)
.setGridColor(Color.WHITE)
.setOverlayColor(Color.WHITE)
.apply();

Advanced View Configuration

You can work directly with Paint objects. This gives you an ability, for example, to draw a grid with dashed effect.

Paint gridPaint = cropView.configureOverlay()
.getCropShape()
.getGridPaint();
 gridPaint.setPathEffect(new DashPathEffect(new float[] {
interval, interval
}
, 0));

You can obtain other Paints in the same way.

CropIwaOverlayConfig config = cropView.configureOverlay();
 CropIwaShape shape = config.getCropShape();
 shape.getGridPaint();
 shape.getBorderPaint();
 shape.getCornerPaint();

You can also create custom crop area shapes. Just extend CropIwaShape (for an example refer to CropIwaOvalShape) and set an instance of you class using:

cropView.configureOverlay()
.setCropShape(new MyAwesomeShape())
.apply();

License

Copyright © 2017 SteelKiwi, http://steelkiwi.com  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. 

Resources

Core-Adapter supports any type of items in RecyclerView with no pain.

A simple customizable indicator for ViewPagers.

This is a simple CheckBox for Android with cool animation.

An Android View system for indicating Views using fading pulses.

A cool material sign up transition.

A simple and Elegant Showcase view for Android.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes