如何在不拉伸的情况下调整图像大小?
我有一个 128*128 大小的位图。我想把它的尺寸做成256*256。但我不想拉伸图像。相反,我的旧图像应放置在新图像的中心,其余像素应填充某种颜色,例如白色。
我该怎么做?
I have a bitmap of 128*128 size. I want to make it of size 256*256. But I don't want to stretch the image. Instead, my old image should be placed at the center of the new image and remaining pixels should be filled with a certain color, for example white.
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ImageView 有 setScaleType(ScaleType type) 方法。
当 ScaleType 为 http://developer.android.com/reference/android/ widget/ImageView.ScaleType.html
尝试使用它。祝你好运!!
ImageView have setScaleType(ScaleType type) method.
When ScaleType is http://developer.android.com/reference/android/widget/ImageView.ScaleType.html
Try to play with it. Good luck!!