1

Java(Android)で曲線を色補正するには? 標準ライブラリ、特に OpenGL を使用する可能性はありますか? 誰かがどこから始めればよいか教えてもらえますか?

4

1 に答える 1

0

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);

この助けを願っています!

于 2012-09-20T04:56:47.313 に答える