android如何在画布上呈现文本?如果我做
Bitmap bitmap = Bitmap.createBitmap(Width, Height
, Bitmap.Config.ARGB_8888);
Canvas canvas = new Canvas(bitmap);
canvas.drawText(text, x, y, textPaint);
是否始终使用外部纹理?这是什么纹理目标?
答案 0 :(得分:1)
位图大小调整= Bitmap.createScaledBitmap(bmp,width,(bmp.getHeight()* width)/ bmp.getWidth(),true);
import pygame
pygame.init()