Android 将图片快速转换成圆角的方法
使用开源项目 RoundedImageView
github上面的开源项目 官方地址为: https://github.com/vinc3m1/RoundedImageView
效果如下:
下面快速的集成进来
步骤分为3个
1: 去github上下载 工程
https://github.com/vinc3m1/RoundedImageView
2: 导入工程
3 在布局中使用它
<com.makeram...
分类:
移动开发 时间:
2014-07-23 17:19:41
阅读次数:
756
使用CSS3技术编写的图片圆角及阴影特效代码,与一般的图片阴影有些不一样,用CSS直接生成阴影,当然要比使用图片来修饰要好得多,图片的加载可能会影响到网页的加载,CSS就不会哦。CSS3图片+阴影
分类:
Web程序 时间:
2014-07-16 22:57:19
阅读次数:
215
//1.创建图片 _userImage = [[UIImageView alloc]init]; //2.设置图片圆角 _userImage.layer.cornerRadius = 33; _userImage.layer.masksToBounds = YES;...
分类:
其他好文 时间:
2014-07-16 11:54:28
阅读次数:
171
publicstaticBitmapgetRoundCornerImage(Bitmapbitmap,introundPixels){//创建一个和原始图片一样大小位图BitmaproundConcerImage=Bitmap.createBitmap(bitmap.getWidth(),bitma...
分类:
其他好文 时间:
2014-07-13 08:43:52
阅读次数:
154
package com.storm.ui;import
android.content.Context;import android.graphics.Bitmap;import
android.graphics.Canvas;import android.graphics.Color;import...
分类:
其他好文 时间:
2014-05-24 14:07:05
阅读次数:
199