Description
Provides Polygon shaped imageView
ShapeShifter alternatives and similar packages
Based on the "Images" category.
Alternatively, view ShapeShifter alternatives based on common mentions on social networks and blogs.
-
FrescoImageViewer
Customizable Android full screen image viewer for Fresco library supporting "pinch to zoom" and "swipe to dismiss" gestures. Made by Stfalcon -
Crescento
Add curve at bottom of image views and relative layouts. -
Dali
Dali is an image blur library for Android. It contains several modules for static blurring, live blurring and animations. -
Louvre
A small customizable library useful to handle an gallery image pick action built-in your app. :sunrise_over_mountains::stars: -
ChiliPhotoPicker
Photo picker library for android. Let's you pick photos directly from files, or navigate to camera or gallery. -
Awesome Image Picker
Awesome Image Picker library will pick images/gifs with beautiful interface. Supports image or gif, Single and Multiple Image selection. -
Image Steganography
✔️ Hide a secret message in an image -
AutoImageFlipper
Auto Scrolling Image Pager with Pager Indicator and Text -
Android Image Popup
Simple android image popup Library -
ImageSliderWithSwipes
This is an Image slider with swipes, Here we used Volley to Image load URL from JSON! Here we make it a very easy way to load images from the Internet and We customized the description font style(OpenSans). -
Image Save and Share
Library to save image locally and shows options to open and share ! -
RoundedImageView-Library
To set single or multiple corners on Image Views. -
ImageList-Lib
Android library for showing images side by side. -
Android ImageView to include pinch zooming, panning, fling and double tap zoom.
Android ImageView to include pinch zooming, panning, fling and double tap zoom.
Appwrite - The Open Source Firebase alternative introduces iOS support
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of ShapeShifter or a related project?
README
ShapeShifter
Provides Polygon shaped imageView
Screenshot
Usage
Step 1. Add the JitPack repository to your build file
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
Step 2. Add the dependency
dependencies {
compile 'com.github.DushyantMainwal:ShapeShifter:2.1.0'
}
Implementation
XML Implementation:
<com.dushyant.library.PolygonView
android:id="@+id/polygon"
android:layout_width="180dp"
android:layout_height="180dp"
android:layout_centerHorizontal="true"
android:layout_marginTop="70dp"
app:border="true"
app:borderColor="#fff"
app:borderWidth="5dp"
app:rotation="0"
app:scaleType="centerCrop"
app:sides="7"
app:src="@drawable/img" />
Java Implementation:
//xml polygon view
polygonView = (PolygonView) findViewById(R.id.polygon);
//true if you want to set Border
polygonView.setBorder(true);
//to set width of Border
polygonView.setBorderWidth(10);
//to set Image Resource
polygonView.setImageSource(R.drawable.dragon);
//to rotate the View
polygonView.setRotateDegree(0);
//to set Sides of the Polygon
polygonView.setSides(7);
//to set Scale Type
polygonView.setScaleType(PolygonView.ScaleType.CENTRE_CROP);
Licence
Copyright (c) 2016 Dushyant Mainwal
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
*Note that all licence references and agreements mentioned in the ShapeShifter README section above
are relevant to that project's source code only.