All Projects → sparrow007 → Circularimageview

sparrow007 / Circularimageview

Licence: apache-2.0
This project allowing you to create circular and rounded corner Imageview in android through simplest way.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Circularimageview

Crescento
Add curve at bottom of image views and relative layouts.
Stars: ✭ 1,289 (+1332.22%)
Mutual labels:  customview, imageview
NoiseView
Android library written in kotlin that add a noise effect to image.
Stars: ✭ 47 (-47.78%)
Mutual labels:  imageview, customview
Bifacialview
Stars: ✭ 355 (+294.44%)
Mutual labels:  customview, imageview
Drawablecolorchange
Android Library to dynamically change color of drawable.
Stars: ✭ 101 (+12.22%)
Mutual labels:  bitmap, imageview
Circular Music Progressbar
Beautiful Circular Progress Bar with album art for android
Stars: ✭ 813 (+803.33%)
Mutual labels:  customview, imageview
Android Circular Progress
Android custom view that loads a circular progress indicator using ImageView or FrameLayout
Stars: ✭ 75 (-16.67%)
Mutual labels:  imageview
D2dlib
A .NET library for hardware-accelerated, high performance, immediate mode rendering via Direct2D.
Stars: ✭ 84 (-6.67%)
Mutual labels:  bitmap
Ticketview
An Android library to implement TicketView in android with normal, rounded and scallop corners
Stars: ✭ 1,180 (+1211.11%)
Mutual labels:  customview
Stickerview
[No more support] A view which can add sticker and zoom,drag,delete it
Stars: ✭ 1,155 (+1183.33%)
Mutual labels:  customview
Jgraph
🔥 一个视觉效果还不错的图表控件(停止维护了,不建议直接用到项目)
Stars: ✭ 1,265 (+1305.56%)
Mutual labels:  customview
Flinglayout
This Layout provide fling dismiss effect like Twitter ImageView.
Stars: ✭ 81 (-10%)
Mutual labels:  imageview
Blurredimageview
Blurred ImageView for your android designes
Stars: ✭ 75 (-16.67%)
Mutual labels:  imageview
Android Badgedimageview
Simple library for placing media type tags or text over an ImageView
Stars: ✭ 84 (-6.67%)
Mutual labels:  imageview
Ariana
Provide Multiple Gradients in ImageViews and Texts. Integrate with ViewPager to change colors dynamically.
Stars: ✭ 74 (-17.78%)
Mutual labels:  imageview
Androidnote
Android基础知识、Android进阶知识、Android自定义View相关、面试相关的知识,欢迎fork,star~
Stars: ✭ 1,279 (+1321.11%)
Mutual labels:  customview
Parallaxview
Parallax view for android apps written in Kotlin
Stars: ✭ 70 (-22.22%)
Mutual labels:  customview
Androidlikebutton
This library will help you to create animation like twitter heart and facebook like and smiley animation in simplest way
Stars: ✭ 80 (-11.11%)
Mutual labels:  customview
Particletextview
一个用粒子动画显示文字的 Android 自定义 View
Stars: ✭ 1,258 (+1297.78%)
Mutual labels:  customview
Abmediaview
Media view which subclasses UIImageView, and can display & load images, videos, GIFs, and audio and from the web, and has functionality to minimize from fullscreen, as well as show GIF previews for videos.
Stars: ✭ 79 (-12.22%)
Mutual labels:  imageview
Sax
Java implementation of SAX, HOT-SAX, and EMMA
Stars: ✭ 78 (-13.33%)
Mutual labels:  bitmap

circularimageview

CircularImageview

This project allowing you to create circular and rounded corner imageview in android through simplest way.

In circular imageview It uses a BitmapShader and does not:

  • create a copy of the original bitmap
  • use a clipPath (which is neither hardware accelerated nor anti-aliased)
  • use setXfermode to clip the bitmap (which means drawing twice to the canvas)

USAGE

To make a circular ImageView add CircularImageView in your layout XML and add CircularImageView library in your project or you can also grab it through Gradle:

Gradle

dependencies {
    ...
    compile 'com.jackandphantom.android:circularimageview:1.2.0'
}

XML

<!-- <a> circular imageview xml</a> -->
 <com.jackandphantom.circularimageview.CircleImage
        android:layout_width="270dp"
        android:layout_height="270dp"
        android:src="@drawable/circularImage"
        app:border_width="3dp"
        app:border_color="#ed2e2e"
        app:add_shadow="true"
        app:shadow_color="#a10909"
        app:shadow_radius="20"
        android:id="@+id/circleImage" />
        
<!-- <a> Rounded corner imageview xml </a> -->
 <com.jackandphantom.circularimageview.RoundedImage
        android:layout_width="320dp"
        android:layout_height="220dp"
        app:rounded_radius="50"
        android:src="@drawable/rounded_Image"
        android:id="@+id/roundedImage3" />

You may use the following properties in your XML to change your CircularImageView.

#####Properties:

To add shadow in your circular imageview you have to add property add_shadow= "true"

/* circular imageview xml */

  • app.border_width (Dimension) -> default 0dp
  • app.border_color (Color) -> default White
  • app.add_shadow (boolean) -> default false
  • app.shadow_color (Color) -> default Black
  • app.shadow_radius (float) -> default 10
  • app.shadow_radius (float) -> default 10

/* Rounded corner imageview xml */

  • app.rounded_radius (float) -> default 20

JAVA

 CircleImage circleImage = (CircleImage) findViewById(R.id.circleImage);
        circleImage.setBorderColor(Color.BLACK);
        circleImage.setBorderWidth(5);
        circleImage.setAddShadow(true);
        circleImage.setShadowRadius(20);
        circleImage.setShadowColor(Color.parseColor("#a10909"));
     
  RoundedImage roundedImage = (RoundedImage) findViewById(R.id.roundedImage);
        roundedImage.setRoundedRadius(50);

New Functionality

  • Now you can load high resolution images without getting outOfmemory exception, all you need to do is call mehtod * loadHighResolutionImage and pass the path of image as arguments
 CircleImage circleImage = (CircleImage) findViewById(R.id.circleImage);
             circleImage.loadHighResolutionImage(String filePath);

This method can be load image upto 2MB, 5MB, 10MB, i did'nt know the limitation that how much it can load.

This is my first library use it :) !!

Changelog

  • 1.2.0

    • Now you can load high resolution images without getting outOfmemory exception (minsdkVersion = 13)
  • 1.1.0

    • Add shadow effect (minsdkVersion = 19)
  • 1.0.0

    • initial release (minsdkVersion = 19)

SAMPLE APP LINK

(https://www.dropbox.com/s/ifd07uaj2z4c9bi/sample.apk?dl=0)

LICENCE

Copyright 2017 Ankit kumar

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.

Thanks to stackoverflow and Henning Dodenhof

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].