在Android上,他们是否可以最大化位图(以全屏显示)并尽可能保持最佳质量?实际上我喜欢这个:
aMatrix.postScale(ARatio, ARatio);
createBitmap(aBitmap{src}, round(aSrcRect.Left){X}, round(aSrcRect.top){Y}, round(aSrcRect.width){Width}, round(aSrcRect.height){height}, aMatrix{m}, True{filter});
但调整大小的位图的质量非常慢:(
答案 0 :(得分:1)
不,不可能将位图图像的图像质量提高到超出已有的水平。您正在寻找的是可缩放的矢量图形或.svg
,您可以在此处找到有关在Android中使用它们的更多信息:
https://developer.android.com/studio/write/vector-asset-studio.html