Android Matrix画布Canvas旋转Rotate,Kotlin

Android Matrix画布Canvas旋转Rotate,Kotlin

    private fun f1() {
        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.setRotate(20f) //默认左上角(0,0)为旋转点

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

        val paint = Paint(Paint.ANTI_ALIAS_FLAG)
        paint.color = Color.RED
        paint.textSize = 60f
        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)
    }

    private fun f2() {
        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.setRotate(20f, (originBmp.width / 2).toFloat(), (originBmp.height / 2).toFloat())

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

        val paint = Paint(Paint.ANTI_ALIAS_FLAG)
        paint.color = Color.RED
        paint.textSize = 60f
        paint.style = Paint.Style.FILL
        paint.textAlign = Paint.Align.LEFT

        val x = 20f
        val y = 100f

        canvas.drawText("fly", x, y, paint)

        iv2?.setImageBitmap(newBmp)
    }

Android Matrix画布Canvas缩放scale,Kotlin-CSDN博客文章浏览阅读116次,点赞3次,收藏3次。文章浏览阅读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/135114661

Android画布Canvas绘图scale & translate,Kotlin-CSDN博客文章浏览阅读447次,点赞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. uni-app canvas创建画布

    2023-12-31 23:38:01       31 阅读
  2. 基于画布canvas进行图片压缩

    2023-12-31 23:38:01       42 阅读

最近更新

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

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

    2023-12-31 23:38:01       101 阅读
  3. 在Django里面运行非项目文件

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

    2023-12-31 23:38:01       91 阅读

热门阅读

  1. 使用mysqldump命令备份数据库

    2023-12-31 23:38:01       62 阅读
  2. conn.setAutoCommit()实现事务的控制用法及作用

    2023-12-31 23:38:01       56 阅读
  3. Oracle【低版本实现UTC格式转换】

    2023-12-31 23:38:01       59 阅读
  4. 序列化机制以及应用场景

    2023-12-31 23:38:01       60 阅读
  5. 微服务(5)

    2023-12-31 23:38:01       56 阅读
  6. neo4j运维管理

    2023-12-31 23:38:01       54 阅读
  7. 【C++设计模式 -- 单例(Singleton)模式】

    2023-12-31 23:38:01       51 阅读