利用canvas和bitmap如何对图片缩放到适应屏幕大小? 创建你自己想要大小的 bitmap public static Bitmap resizeBitmap(Bitmap bitmap, int w, int h) { if (bitmap != null) { int width = bitmap.getWidth(); int height = bitmap.ge... 移动开发 2023-09-30 133 点赞 2 评论 201 浏览