更改图像宽度和高度

发布于 2024-10-02 18:30:03 字数 131 浏览 0 评论 0原文

我想更改图像的高度和宽度。使用canvas显示图像:

canvas.drawBitmap (_image, 0, 0, null);

如何更改位图的大小?

I would like to change the height and width of the image. Displays the image using the canvas:

canvas.drawBitmap (_image, 0, 0, null);

How to change the size of the bitmap?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

属性 2024-10-09 18:30:03

使用矩阵:

int width = bitmap.getWidth();
int height = bitmap.getHeight();

float scaleWidth = ((float) newWidth) / width;
float scaleHeight = ((float) newHeight) / height;      

matrix = new Matrix();

matrix.postScale(scaleWidth, scaleHeight);

Bitmap resizedBitmap = Bitmap.createBitmap(bitmap, 0, 0,
                    width, height, matrix, true);  

Use a Matrix:

int width = bitmap.getWidth();
int height = bitmap.getHeight();

float scaleWidth = ((float) newWidth) / width;
float scaleHeight = ((float) newHeight) / height;      

matrix = new Matrix();

matrix.postScale(scaleWidth, scaleHeight);

Bitmap resizedBitmap = Bitmap.createBitmap(bitmap, 0, 0,
                    width, height, matrix, true);  
街角迷惘 2024-10-09 18:30:03

或者 Bitmap.createScaledBitmap(...)

Or Bitmap.createScaledBitmap(...)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文