android 画图 抗锯齿 代码

//在有使用Paint的情况下
paint.setAntiAlias(true);  
//在不使用Paint的情况下
canvas.setDrawFilter(new PaintFlagsDrawFilter(0, Paint.ANTI_ALIAS_FLAG|Paint.FILTER_BITMAP_FLAG)); 


你可能感兴趣的:(android 画图 抗锯齿 代码)