Coder Social home page Coder Social logo

liupeng1991 / idcardcamera Goto Github PK

View Code? Open in Web Editor NEW

This project forked from wildma/idcardcamera

0.0 1.0 0.0 8.08 MB

:fire:Android自定义相机实现身份证拍照,并加入自动对焦与图片不规则裁剪。 https://www.jianshu.com/p/5e3cb0c63cd5

License: Apache License 2.0

Java 100.00%

idcardcamera's Introduction

IDCardCamera

Android 自定义身份证相机

jitpack API

效果图

身份证来源网络虚拟构造

APK

点击下载APK

功能特点

  • 自定义相机界面
  • 支持开启闪光灯
  • 支持手动触摸屏幕对焦
  • 支持自动对焦
  • 支持图片自动裁剪
  • 支持图片手动不规则裁剪

使用

Step 1. 添加 JitPack 仓库

在项目的 build.gradle 添加 JitPack 仓库

allprojects {
    repositories {
        ...
        maven { url "https://jitpack.io" }
    }
}

Step 2. 添加依赖

在需要使用的 module 中添加依赖

dependencies {
	compile 'com.github.wildma:IDCardCamera:1.1.1'
}

Step 3. 打开拍照界面

  • 身份证正面
IDCardCamera.create(this).openCamera(IDCardCamera.TYPE_IDCARD_FRONT);
  • 身份证反面
IDCardCamera.create(this).openCamera(IDCardCamera.TYPE_IDCARD_BACK);

注意: create() 方法的参数传的是上下文,在 Activity 中传 activity.this,在 Fragment 中传 fragment.this

Step 4. 在 onActivityResult 方法中获取裁剪后的图片

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
	if (resultCode == IDCardCamera.RESULT_CODE) {
		//获取图片路径,显示图片
		final String path = IDCardCamera.getImagePath(data);
		if (!TextUtils.isEmpty(path)) {
			if (requestCode == IDCardCamera.TYPE_IDCARD_FRONT) { //身份证正面
				mIvFront.setImageBitmap(BitmapFactory.decodeFile(path));
			} else if (requestCode == IDCardCamera.TYPE_IDCARD_BACK) {  //身份证反面
				mIvBack.setImageBitmap(BitmapFactory.decodeFile(path));
			}
		}
	}
}

清理缓存

实际开发中将图片上传到服务器成功后需要删除全部缓存图片,调用如下方法即可:

FileUtils.clearCache(this);

详细介绍请看文章: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.

idcardcamera's People

Contributors

wildma avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.