All Projects → vitoziv → Vicmaimageview

vitoziv / Vicmaimageview

Licence: mit
Content Mode Animatable Image View, change image view's content mode with your animation!

Projects that are alternatives of or similar to Vicmaimageview

Androidsvgloader
Android library for load svg from internet to imageview
Stars: ✭ 52 (-73.06%)
Mutual labels:  imageview
Crescento
Add curve at bottom of image views and relative layouts.
Stars: ✭ 1,289 (+567.88%)
Mutual labels:  imageview
Multipictureview
MultiPictureView 是一个将多张图片组合显示并支持添加和删除的控件
Stars: ✭ 120 (-37.82%)
Mutual labels:  imageview
Ariana
Provide Multiple Gradients in ImageViews and Texts. Integrate with ViewPager to change colors dynamically.
Stars: ✭ 74 (-61.66%)
Mutual labels:  imageview
Flinglayout
This Layout provide fling dismiss effect like Twitter ImageView.
Stars: ✭ 81 (-58.03%)
Mutual labels:  imageview
Loopviewpagerlayout
☺无限轮播ViewPagerLayout 广告栏 banner 多种滑动的样式 使用API简单明了
Stars: ✭ 100 (-48.19%)
Mutual labels:  imageview
Rwidgethelper
Android UI 快速开发,专治原生控件各种不服
Stars: ✭ 996 (+416.06%)
Mutual labels:  imageview
Lkimagekit
A high-performance image framework, including a series of capabilities such as image views, image downloader, memory caches, disk caches, image decoders and image processors.
Stars: ✭ 2,063 (+968.91%)
Mutual labels:  imageview
Android Badgedimageview
Simple library for placing media type tags or text over an ImageView
Stars: ✭ 84 (-56.48%)
Mutual labels:  imageview
Kotlin Playground
Kotlin practice
Stars: ✭ 111 (-42.49%)
Mutual labels:  imageview
Android Circular Progress
Android custom view that loads a circular progress indicator using ImageView or FrameLayout
Stars: ✭ 75 (-61.14%)
Mutual labels:  imageview
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 (-59.07%)
Mutual labels:  imageview
Drawablecolorchange
Android Library to dynamically change color of drawable.
Stars: ✭ 101 (-47.67%)
Mutual labels:  imageview
Vimage
A simplistic image viewer for Windows, inspired by vjpeg.
Stars: ✭ 63 (-67.36%)
Mutual labels:  imageview
Sharpview
安卓带有尖角气泡的控件(TextView,ImageView,EditText,Layout),支持渐变色,圆角等自定义属性
Stars: ✭ 137 (-29.02%)
Mutual labels:  imageview
Dragphotoview
仿微信图片展示
Stars: ✭ 46 (-76.17%)
Mutual labels:  imageview
Circularimageview
This project allowing you to create circular and rounded corner Imageview in android through simplest way.
Stars: ✭ 90 (-53.37%)
Mutual labels:  imageview
Gestureviews
ImageView and FrameLayout with gestures control and position animation
Stars: ✭ 2,257 (+1069.43%)
Mutual labels:  imageview
Pinchimageview
体验非常好的Android图片手势控件。
Stars: ✭ 1,871 (+869.43%)
Mutual labels:  imageview
Pinchtozoom
Android's ImageView pinch-to-zoom made easy
Stars: ✭ 108 (-44.04%)
Mutual labels:  imageview

VICMAImageView - Content Mode Animatable Image View

Change image view's content mode with your animation!

demo.gif

Installation

CocoaPods

pod 'VICMAImageView', '~> 1.0'

Usage

Use VICMAImageView like a UIImageView

- (void)viewDidLoad {
    [super viewDidLoad];
    UIImage *image = [UIImage imageNamed:@"1.jpg"];
    VICMAImageView *imageView = [[VICMAImageView alloc] initWithImage:image];
    imageView.frame = CGRectMake(0, 0, 100, 100);
    [self.view addSubview:imageView];
}

Animate contentMode in animation block

[UIView animateWithDuration:0.3
                     animations:^{
                         imageView.contentMode = UIViewContentModeScaleAspectFill;
                     }];

##License

VICMAImageView is available under the MIT license. See the LICENSE file for more info.

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