Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在Java(Android)中对曲线进行颜色校正?使用标准库,特别是OpenGL,是否有这种可能性?有人可以帮我从哪里开始吗?
安卓文档:AntiAliasing smooths out the edges of what is being drawn, but is has no impact on the interior of the shape...
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);
希望这有帮助!