Android Kotlin制作签名白板并保存图片

学更好的别人,

做更好的自己。

——《微卡智享》

Android Kotlin制作签名白板并保存图片_第1张图片

本文长度为899,预计阅读3分钟

前言

最近的项目中要加一个人员签名的存根,在Android实现一个手写签名的功能,然后签名完成的图像需要保存图片留底,那这篇我们就来做一个手写签名白板的Demo。

69725eecf12b633534ba3420b33ea3e8.png

实现效果

Android Kotlin制作签名白板并保存图片_第2张图片

Android Kotlin制作签名白板并保存图片_第3张图片

代码实现

1b4fc01a4c445c23e89de5e0d00cf37d.png

微卡智享

实现手写签名,需要我们自己定义一个SignatureView,继承自View,里面定义画笔和划线的路径,然后重写其onTouchEvent,根据其划线的路径进行画笔操作。

核心代码SignatureView

package dem.vaccae.signnatureview


import android.content.Context
import android.graphics.*
import android.util.AttributeSet
import android.view.MotionEvent
import android.view.View
import androidx.core.view.drawToBitmap
import java.lang.Float.max
import kotlin.math.min


class SignatureView(context: Context?, attrs: AttributeSet?) : View(context, attrs) {


    //笔划宽度
    private var STROKE_WIDTH = 5f


    private var lastTouchX = -1f
    private var lastTouchY = -1f


    //定义画笔相关
    private val paint = Paint()


    //定义画笔路径
    private val path = Path()


    //绘制的矩形区域
    private val drawRect = RectF()


    //初始化数据
    init {
        //设置抗锯齿
        paint.isAntiAlias = true
        //设置画笔颜色
        paint.color = Color.BLUE
        //设置画笔类型
        paint.style = Paint.Style.STROKE
        //设置画笔的线冒样式
        paint.strokeCap = Paint.Cap.ROUND
        //设置画笔连接处样式
        paint.strokeJoin = Paint.Join.ROUND
        //设置画笔宽度
        paint.strokeWidth = STROKE_WIDTH
    }


    //清除绘制
    fun clear(){
        path.reset()
        postInvalidate()
    }


    //获取当前页面图片
    fun getBitmapFromView():Bitmap{
        return drawToBitmap()
    }


    //设置笔划宽度
    fun setPaintStrokeWidth(width:Float){
        STROKE_WIDTH = width
        paint.strokeWidth = STROKE_WIDTH
    }


    //设置笔划宽度
    fun setPaintColor(color: Int){
        paint.color = color
    }


    //画笔手执处理
    override fun onTouchEvent(event: MotionEvent?): Boolean {
        event?.let {
            val event_x = it.x
            val event_y = it.y


            when (it.action) {
                MotionEvent.ACTION_DOWN -> {
                    //点击按下时开始记录路径
                    path.moveTo(event_x, event_y)
                    //记录最后的X和Y的坐标
                    lastTouchX = event_x
                    lastTouchY = event_y


                    return true
                }
                MotionEvent.ACTION_MOVE, MotionEvent.ACTION_UP -> {
                    //计算绘制区域
                    drawRect.left = min(lastTouchX, event_x)
                    drawRect.right = max(lastTouchX, event_x)
                    drawRect.top = min(lastTouchY, event_y)
                    drawRect.bottom = max(lastTouchY, event_y)


                    // 当硬件跟踪事件的速度快于事件的交付速度时
                    // 事件将包含这些跳过点的历史记录
                    val historySize = it.historySize
                    (0 until historySize).forEach { i ->
                        val historicalx = it.getHistoricalX(i)
                        val historicaly = it.getHistoricalY(i)
                        if (historicalx < drawRect.left) {
                            drawRect.left = historicalx
                        } else if (historicalx > drawRect.right) {
                            drawRect.right = historicalx
                        }


                        if (historicaly < drawRect.top) {
                            drawRect.top = historicaly
                        } else if (historicaly > drawRect.bottom) {
                            drawRect.bottom = historicaly
                        }


                        path.lineTo(historicalx, historicaly)
                    }


                    // 回放历史记录后,将线路连接到触点。
                    path.lineTo(event_x, event_y)
                }
                else -> {
                    return false
                }
            }


            // 绘制时根据笔画宽度除2用于在中心开妈绘制
            postInvalidate(
                (drawRect.left - STROKE_WIDTH / 2).toInt(),
                (drawRect.top - STROKE_WIDTH / 2).toInt(),
                (drawRect.right + STROKE_WIDTH / 2).toInt(),
                (drawRect.bottom + STROKE_WIDTH / 2).toInt()
            );


            lastTouchX = event_x;
            lastTouchY = event_y;
        }
        return super.onTouchEvent(event)
    }




    override fun onDraw(canvas: Canvas?) {
        canvas?.let {
            it.drawPath(path, paint)
        }
        super.onDraw(canvas)
    }


}

几个重点

Android Kotlin制作签名白板并保存图片_第4张图片

绘制图像时使用postInvalidate,根据定义的划线区域设置

Android Kotlin制作签名白板并保存图片_第5张图片

清除画板直接使用path.reset()然后postInvalidate()即可

Android Kotlin制作签名白板并保存图片_第6张图片

使用darwToBitmap()可以直接将当前View转出Bitmap

MainActivity中调用

01

xml布局中直接引用SignatureView







    




    


    

02

MainActivity代码

package dem.vaccae.signnatureview


import android.graphics.Color
import androidx.appcompat.app.AppCompatActivity
import android.os.Bundle
import android.widget.ImageView
import android.widget.Toast
import dem.vaccae.signnatureview.databinding.ActivityMainBinding
import kotlin.random.Random


class MainActivity : AppCompatActivity() {


    private lateinit var binding: ActivityMainBinding


    override fun onCreate(savedInstanceState: Bundle?) {
        super.onCreate(savedInstanceState)
//        setContentView(R.layout.activity_main)


        binding = ActivityMainBinding.inflate(layoutInflater)
        setContentView(binding.root)


        binding.signatureView.setBackgroundColor(Color.rgb(245,245,245))


        binding.btnclear.setOnClickListener {
            binding.signatureView.clear()
        }


        binding.btnSave.setOnClickListener {
            val bmp = binding.signatureView.getBitmapFromView()
            binding.imgv.scaleType = ImageView.ScaleType.FIT_XY
            binding.imgv.setImageBitmap(bmp)
        }
    }
}

这样一个简单的手写签名板的小Demo就实现了。

6cfa4aeb3587312e351fadf07925e155.png

82d535abc2b55ed0ffa68419a7755328.png

往期精彩回顾

Android Kotlin制作签名白板并保存图片_第7张图片

超简单的pyTorch训练->onnx模型->C++ OpenCV DNN推理(附源码地址)


Android Kotlin制作签名白板并保存图片_第8张图片

Kotlin在协程中使用Select表达式选择最快结果


Android Kotlin制作签名白板并保存图片_第9张图片

Android画中画(PIP)进阶---Action按钮的使用


你可能感兴趣的:(android,kotlin,开发语言,java)