5

スケールアップしたいピクセル アートがあります。問題は、拡大すると、アンチエイリアシングの原因ですべてがぼやけてしまうことです。XML から直接アンチエイリアシングを無効にする方法はありますか?

4

1 に答える 1

6

役に立つことを願っています

Bitmap bmpSource = BitmapFactory.decodeResource(getResources(), SourceFileId);
//100 is dimension to resizing image size
//Passing filter = false will result in a blocky, pixellated image.
//Passing filter = true will give you smoother edges
Bitmap bmpScaled = Bitmap.createScaledBitmap(bmpSource, 100, 100, false); 


ImageView img = (ImageView) findViewById(Your imageView Control Id);
img.setImageBitmap(bmpScaled);

これが欲しいの!?

于 2013-07-05T20:49:45.390 に答える