How to draw and scale a bitmap on a canvas using bicubic interpolation in Android?

后端 未结 2 1621
野趣味
野趣味 2021-02-02 14:15

I want to draw a bitmap on a canvas with bigger size than it is. I can use canvas.drawBitmap(bitmap, null, destRect, null); but that gives a poor quality, as the result is pixel

2条回答
  •  野趣味
    野趣味 (楼主)
    2021-02-02 14:57

    You need to set the FILTER_BITMAP_FLAG flag in your paint.

    canvas.drawBitmap(bitmap, matrix, null); //ugly jaggies unless scale is 1:1, but fast
    

    or

    Paint paint = new Paint();
    paint.setFilterBitmap();
    canvas.drawBitmap(bitmap, matrix, paint); // pretty but slower (not too slow, usually)
    

    The same applies to other (syntactic sugar) forms of the drawBitmap method.

    There is no documentation anywhere for most of the Android drawing options and neither is there documentation for the underlying native Skia library that does the rendering. I'd be happier if there were. You can search the Skia source code on Google Code Search. Search for Skia and dig into the raw source; that's the only documentation.

提交回复
热议问题