canvas.drawtext使用的纹理

时间:2017-10-24 18:09:59

标签: android android-layout

android如何在画布上呈现文本?如果我做

    Bitmap bitmap = Bitmap.createBitmap(Width, Height
            , Bitmap.Config.ARGB_8888);
    Canvas canvas = new Canvas(bitmap);
    canvas.drawText(text, x, y, textPaint);

是否始终使用外部纹理?这是什么纹理目标?

1 个答案:

答案 0 :(得分:1)

位图大小调整= Bitmap.createScaledBitmap(bmp,width,(bmp.getHeight()* width)/ bmp.getWidth(),true);

import pygame

pygame.init()