在开发中我们经常需要对图片以人脸为中心进行剪切并显示,这时就需要下面这个工具了。
使用库: http://code.taobao.org/p/tclip/
参考项目:https://github.com/beartung/tclip-android
本项目参考以上上面及识别库进行修改封装打包,意在更方便灵活使用。
下载工具 jar(IVClip_V1.0.jar) : https://github.com/CNCFOX/ImageViewClip/raw/master/Libs/IVClip_V1.0.jar
下载so文件:https://github.com/CNCFOX/ImageViewClip/raw/master/Libs/so_File.zip
将下载的jar
和 .so
文件加入到项目中。
在项目中使用如下API即可:
这是一个继承ImageView的图片控件,可以直接在xml 中进行使用:
<com.cfox.ivcliplib.CImageView
android:src="@mipmap/img"
android:layout_width="80dp"
android:layout_height="80dp" />
说明:这里的宽和高不是显示的宽和高,指的是剪切时的宽和高。实际显示宽和高由自己设定,如果将ImageView 控件的宽和高设置为wrap_content
此时的宽和高即为剪切的宽和高。
-
crop(ImageView imageView , int width, int height)
将指定的ImageView 中的图片剪切指定大小imageView : 被处理的ImageView 控件
width : 宽
height : 高
无返回值使用示例:
ImageView mImg = (ImageView) findViewById(R.id.img); CImageUtils.instance(this).crop(mImg,400,400);
-
cropToBitmap(ImageView imageView, int width, int height)
将指定的ImageView 中的图片剪切指定大小,返回剪切后图片以Bitmap类型。imageView : 被处理的ImageView 控件
width : 宽
height : 高
返回值 : Bitmap使用示例:
ImageView mImgA_A = (ImageView) findViewById(R.id.img_a_a); ImageView mBaseView = (ImageView) findViewById(R.id.img_base1); Bitmap clipBitmap = CImageUtils.instance(this).cropToBitmap(mBaseView,400,400); mImgA_A.setImageBitmap(clipBitmap);
-
cropToBitmap(Bitmap imageBitmap, int width, int height)
将指定的Bitmap图片,剪切指定大小,返回剪切后图片以Bitmap类型。imageBitmap : Bitmap图片
width : 宽
height : 高
返回值 : Bitmap使用示例:
ImageView mImgA_A = (ImageView) findViewById(R.id.img_a_a); ImageView mBaseView = (ImageView) findViewById(R.id.img_base1); Bitmap baseBitmap = ((BitmapDrawable)mBaseView.getDrawable()).getBitmap(); Bitmap clipBitmap = CImageUtils.instance(this).cropToBitmap(baseBitmap,320,320); mImgA_A.setImageBitmap(clipBitmap);