IDCardCamera
Introduction: Android 自定义相机实现身份证拍照,并加入自动对焦与图片不规则裁剪
Tags:
README of English
效果图
APK
功能特点
- 自定义相机界面
- 支持开启闪光灯
- 支持手动触摸屏幕对焦
- 支持自动对焦
- 支持图片自动裁剪
- 支持图片手动不规则裁剪
使用
Step 1. 添加 JitPack 仓库
在项目的 build.gradle 添加 JitPack 仓库
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
Step 2. 添加依赖
在需要使用的 module 中添加依赖
dependencies {
compile 'com.github.wildma:IDCardCamera:1.0.2'
}
Step 3. 调用 CameraActivity 类的 toCameraActivity 方法打开拍照界面
CameraActivity.toCameraActivity(this, CameraActivity.TYPE_IDCARD_FRONT);
Step 4. 在 onActivityResult 方法中获取裁剪后的图片
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == CameraActivity.REQUEST_CODE && resultCode == CameraActivity.RESULT_CODE) {
//获取图片路径,显示图片
final String path = CameraActivity.getImagePath(data);
if (!TextUtils.isEmpty(path)) {
imageView.setImageBitmap(BitmapFactory.decodeFile(path));
}
}
}
详细介绍请看文章:Android 自定义相机实现身份证拍照,并加入自动对焦与图片不规则裁剪
ps:如果对你有帮助,点下 star 就是对我最大的认可。
感谢
License
Copyright 2018 wildma
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.
Support Me
Paypal: trinea.cn@gmail.com
Apps

About Me
Google+: Trinea trinea
GitHub: Trinea
Blog: www.trinea.cn