Android Matrix画布Canvas缩放scale,Kotlin

Android Matrix画布Canvas缩放scale,Kotlin

        val originBmp = BitmapFactory.decodeResource(resources, R.mipmap.pic).copy(Bitmap.Config.ARGB_8888, true)

        val newBmp = Bitmap.createBitmap(originBmp.width, originBmp.height, Bitmap.Config.ARGB_8888)
        val canvas = Canvas(newBmp)

        val matrix = Matrix()
        canvas.concat(matrix)
        matrix.setScale(2f, 2f) //宽高放大2倍。

        //把原图绘制在画布Canvas上
        canvas.drawBitmap(originBmp, matrix, null)

        val paint = Paint(Paint.ANTI_ALIAS_FLAG)
        paint.color = Color.RED
        paint.textSize = 30f
        paint.style = Paint.Style.FILL
        paint.textAlign = Paint.Align.LEFT
        val x = 20f
        val y = 100f
        canvas.drawText("fly", x, y, paint)

        iv1?.setImageBitmap(newBmp)

https://zhangphil.blog.csdn.net/article/details/134832517icon-default.png?t=N7T8https://zhangphil.blog.csdn.net/article/details/134832517

Android画布Canvas绘图scale & translate,Kotlin-CSDN博客文章浏览阅读444次,点赞4次,收藏11次。文章浏览阅读9.6k次。文章浏览阅读1.8k次。/*Java代码 将Drawable转化为Bitmap */ Bitmap drawableToBitmap(Drawable drawable) { int width = drawable.getIntrinsicWidth();Android Material Design :LinearLayoutCompat添加分割线divider_linearlayout 分割线-CSDN博客。https://blog.csdn.net/zhangphil/article/details/134930229

相关推荐

  1. canvas实现鼠标滚轮滚动画布

    2023-12-23 09:38:05       63 阅读
  2. Fabric 画布、拖动、初始化大小

    2023-12-23 09:38:05       60 阅读
  3. vue实现画笔canvas转视频播放功能

    2023-12-23 09:38:05       52 阅读

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2023-12-23 09:38:05       94 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2023-12-23 09:38:05       100 阅读
  3. 在Django里面运行非项目文件

    2023-12-23 09:38:05       82 阅读
  4. Python语言-面向对象

    2023-12-23 09:38:05       91 阅读

热门阅读

  1. vim 撤销和恢复

    2023-12-23 09:38:05       61 阅读
  2. go语言学习计划。

    2023-12-23 09:38:05       77 阅读
  3. chatgpt常用指令(1)

    2023-12-23 09:38:05       56 阅读
  4. react 2

    react 2

    2023-12-23 09:38:05      45 阅读
  5. centos 7.4 docker

    2023-12-23 09:38:05       53 阅读
  6. 在CentOS 7上使用普通用户`minio`安装和配置MinIO

    2023-12-23 09:38:05       52 阅读