1

如何在Java(Android)中对曲线进行颜色校正?使用标准库,特别是OpenGL,是否有这种可能性?有人可以帮我从哪里开始吗?

4

1 回答 1

0

安卓文档:AntiAliasing smooths out the edges of what is being drawn, but is has no impact on the interior of the shape...

Paint paint = new Paint();
paint.setAntiAlias(true);
canvas.drawCircle(center_x, center_y, radius, paint);

希望这有帮助!

于 2012-09-20T04:56:47.313 回答