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

最佳答案

Android文档: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);


希望有帮助!

10-08 03:00